-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
{
"name": "@iancleary/design-system",
"version": "0.3.1",
"description": "",
"type": "module",
"scripts": {
"build": "run-s build:*",
"build:components": "tsup",
"release": "auto shipit",
"lint": "eslint .",
"fmt": "prettier --cache --write . && pnpm run lint -- --fix"
},
"keywords": [],
"author": "Ian Cleary <[email protected]>",
"license": "MPL 2.0",
"files": [
"styles/reset.css",
"styles/tokens.stylex.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/iancleary/design-system.git"
},
"bugs": {
"url": "https://github.com/iancleary/design-system/issues"
},
"homepage": "https://github.com/iancleary/design-system#readme",
"auto": {
"plugins": [
"npm",
"released"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@remix-run/react": "^2.15.2",
"@stylexjs/stylex": "^0.9.3"
},
"devDependencies": {
"auto": "^11.2.1",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"tsup": "^8.3.0"
}
}