-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 3.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@oxide/design-system",
"version": "1.8.3",
"description": "Home of reusable design assets and token for oxide internal sites",
"type": "module",
"sideEffects": false,
"typings": "./components/dist/index.d.ts",
"module": "./components/dist/index.js",
"exports": {
"./styles/dist/*": "./styles/dist/*",
"./components/dist/*.css": "./components/dist/*.css",
"./components/dist": "./components/dist/index.js",
"./icons": "./icons/index.js",
"./icons/react": "./icons/react/index.js",
".": {
"import": {
"types": "./components/dist/index.d.ts",
"default": "./components/dist/index.js"
}
}
},
"scripts": {
"export-icons": "npx zx ./scripts/export-icons.md && npm run fmt",
"build": "run-s build:*",
"prebuild:tokens": "token-transformer --preserveRawValue ./styles/src/tokens.json ./styles/src/.tokens/main.json global,colors,core,main",
"build:themes": "./scripts/build_themes.sh",
"build:components": "tsup --dts",
"release": "auto shipit",
"lint": "eslint --ext .js,.ts,.tsx,.json .",
"fmt": "prettier --cache --write . && npm run lint -- --fix",
"test": "vitest --config test/vitest.config.ts",
"tsc": "tsc"
},
"author": "Oxide Computer Company <[email protected]>",
"license": "MPL 2.0",
"devDependencies": {
"@figma-export/cli": "^4.5.0",
"@figma-export/output-components-as-svg": "^4.5.0",
"@figma-export/output-components-as-svgr": "^4.7.0",
"@figma-export/transform-svg-with-svgo": "^4.5.0",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/svg-sprite": "^0.0.34",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"auto": "^11.0.5",
"dedent": "^1.5.3",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^10.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"style-dictionary": "^3.7.1",
"svg-sprite": "^2.0.2",
"token-transformer": "^0.0.26",
"tsup": "^7.1.0",
"tsx": "^4.19.2",
"typescript": "^5.1.6",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.0-beta.2",
"zx": "^7.2.0"
},
"peerDependencies": {
"@asciidoctor/core": "^3.0.0",
"@oxide/react-asciidoc": "^1.0.0",
"@remix-run/react": "2.13.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@floating-ui/react": "^0.25.1",
"@headlessui/react": "^1.7.17",
"@radix-ui/react-accordion": "^1.2.2",
"@radix-ui/react-tabs": "^1.0.4",
"classnames": "^2.5.1",
"shiki": "^1.24.0"
},
"files": [
"styles/dist/*.css",
"styles/dist/tailwind-tokens.ts",
"icons/**",
"components/dist/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oxidecomputer/design-system.git"
},
"bugs": {
"url": "https://github.com/oxidecomputer/design-system/issues"
},
"homepage": "https://github.com/oxidecomputer/design-system#readme",
"auto": {
"plugins": [
"npm",
"released"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}