-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.62 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
{
"name": "solid-material-color",
"version": "1.1.0",
"description": "A tool library for generating color value order",
"author": "pk111and222 <[email protected]>",
"homepage": "https://https://github.com/pk111and222/solid-material-color",
"repository": "github:pk111and222/solid-material-color",
"license": "ISC",
"keywords": [
"solid",
"m3",
"material-color-utilities",
"variants",
"material-color",
"dynamic",
"typescript",
"npm",
"package"
],
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"dev": "tsc && vite build --watch",
"start": "vite --host --open",
"build": "tsc && vite build",
"build:types": "dts-bundle-generator --config ./dts-bundle-generator.config.ts",
"lint:scripts": "eslint ./src --ext .ts",
"lint:styles": "stylelint ./**/*.{css,scss}",
"format:scripts": "prettier ./src --write",
"format:styles": "stylelint ./**/*.{css,scss} --fix"
},
"peerDependencies": {
"solid-js": "^1.8.17"
},
"dependencies": {
"@material/material-color-utilities": "^0.3.0"
},
"devDependencies": {
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"vite-plugin-solid": "^2.10.2",
"dts-bundle-generator": "^9.5.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.1",
"tslib": "^2.6.2",
"typescript": "^5.4.2",
"vite": "^5.2.13",
"vite-plugin-dts": "^3.9.1"
}
}