-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.45 KB
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
{
"name": "shokika.css",
"version": "1.8.0",
"description": "A lightly modern reset CSS.",
"sideEffects": false,
"main": "dist/shokika.css",
"cdn": "dist/shokika.css",
"cdn:min": "dist/shokika.min.css",
"types": "dist/string.d.ts",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:css": "postcss ./src/shokika.css > ./dist/shokika.css",
"build:css:min": "postcss --env production ./src/shokika.css > ./dist/shokika.min.css",
"build:bundle": "microbundle -i ./dist/string.js -o dist/string.js",
"postbuild:css": "node ./lib/toString.js && npm run build:bundle",
"lint": "eslint .",
"preview": "vite preview",
"clean": "rimraf dist docs/dist && mkdir dist && mkdir docs/dist",
"prepare": "npm run clean && npm run build:css && npm run build:css:min && husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hiro0218/shokika.css.git"
},
"keywords": [
"css",
"reset",
"reset-css",
"normalize-css"
],
"author": "hiro",
"license": "MIT",
"bugs": {
"url": "https://github.com/hiro0218/shokika.css/issues"
},
"homepage": "https://github.com/hiro0218/shokika.css#readme",
"files": [
"LICENSE",
"dist/string.d.ts",
"dist/shokika.css",
"dist/shokika.min.css",
"dist/*.js",
"dist/*.js.map"
],
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react-swc": "^3.9.0",
"eslint": "^9.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"microbundle": "^0.15.1",
"postcss": "^8.5.3",
"postcss-banner": "^4.0.1",
"postcss-cli": "^11.0.1",
"postcss-lightningcss": "^1.0.1",
"prettier": "^3.6.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rimraf": "^6.0.1",
"stylelint": "^16.21.0",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-recommended": "^17.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1",
"vite": "^6.3.3"
},
"lint-staged": {
"**/*.{ts,tsx,js}": [
"eslint --fix",
"eslint",
"prettier --write --cache"
],
"**/*.css": [
"stylelint --fix",
"stylelint",
"prettier --write --cache"
]
}
}