-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.08 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
{
"name": "material3-style",
"type": "module",
"version": "0.0.1",
"packageManager": "[email protected]",
"description": "A Material 3 (Material Design) style library, including typography, color, elevation, shape and motion.",
"author": "Riri <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/Daydreamer-riri/material3-style#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Daydreamer-riri/material3-style.git"
},
"bugs": "https://github.com/Daydreamer-riri/material3-style/issues",
"keywords": [
"material3",
"material design",
"css",
"style",
"typography",
"color",
"elevation",
"shape"
],
"sideEffects": false,
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"bin": {
"material3-style": "./bin/material3-style.mjs"
},
"files": [
"bin",
"color",
"dist",
"typography"
],
"scripts": {
"build": "unbuild",
"build:sass": "npm run build:typo | npm run build:color",
"build:typo": "sass --style=compressed typography/style.scss:typography/css/index.css",
"build:color": "sass --style=compressed color/style:color/css",
"reset:color": "esno scripts/reset-color.ts",
"dev": "unbuild --stub",
"lint": "eslint .",
"prepublishOnly": "nr build && nr reset:color && nr build:sass",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@material/material-color-utilities": "^0.3.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@ririd/eslint-config": "^1.3.3",
"@types/node": "^18.15.11",
"@types/yargs": "^17.0.32",
"bumpp": "^9.2.1",
"eslint": "^9.6.0",
"esno": "^4.0.0",
"lint-staged": "15.2.0",
"rimraf": "5.0.1",
"sass": "^1.69.6",
"simple-git-hooks": "^2.9.0",
"typescript": "5.3.3",
"unbuild": "^2.0.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}