-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.33 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
{
"name": "@glare-labs/material-tokens-generator",
"version": "0.2.0",
"publishConfig": {
"access": "public"
},
"description": "Use the @material/material-color-utilities tool to create a set of tokens based on material design.",
"keywords": [
"color",
"theme-generator",
"material",
"material-design",
"material-tokens",
"tokens",
"color-tokens"
],
"main": "build/index.js",
"module": "build/index.js",
"files": [
"build/**/*"
],
"exports": {
".": {
"import": "./build/index.js",
"require": "./build/index.js",
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"./*": {
"import": "./*.js",
"require": "./*.js",
"types": "./build/index.d.ts",
"default": "./*.js"
}
},
"types": "build/index.d.ts",
"typings": "build/index.d.ts",
"scripts": {
"compile": "rollup --config"
},
"author": "bre97-web",
"license": "MIT",
"type": "module",
"dependencies": {
"@glare-labs/jtc-lib": "^0.0.1"
},
"devDependencies": {
"@material/material-color-utilities": "^0.2.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "20.8.2",
"rollup": "^4.13.0",
"tslib": "^2.7.0",
"typescript": "~5.2.0"
}
}