-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
83 lines (83 loc) · 2.34 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
82
83
{
"name": "@vector-im/compound-design-tokens",
"version": "2.1.1",
"description": "Compound design tokens",
"sideEffects": false,
"scripts": {
"build": "tsx ./build.ts",
"dev": "http-server .",
"format": "yarn exec biome -- format",
"lint": "yarn exec biome -- lint",
"check": "yarn exec biome -- check",
"types": "yarn exec tsc -- --noEmit"
},
"keywords": ["compound", "design tokens", "style dictionary", "css"],
"files": ["./assets/web/**/*", "./icons/**/*"],
"main": "assets/web/js/index.js",
"type": "module",
"exports": {
"./*": "./*",
"./assets/web/js": "./assets/web/js/index.js",
"./assets/web/js/*": {
"import": "./assets/web/js/*.js",
"types": "./assets/web/js/*.d.ts"
},
"./assets/web/icons": {
"import": "./assets/web/icons/index.js",
"require": "./assets/web/icons/index.cjs",
"types": "./assets/web/icons/index.d.ts"
},
"./assets/web/icons/*": {
"import": "./assets/web/icons/*.js",
"require": "./assets/web/icons/*.cjs",
"types": "./assets/web/icons/*.d.ts"
}
},
"author": "",
"license": "Apache-2.0",
"homepage": "https://github.com/vector-im/compound-design-tokens",
"bugs": {
"url": "https://github.com/vector-im/compound/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vector-im/compound-design-tokens.git"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/generator": "^7.24.7",
"@babel/plugin-transform-react-jsx": "^7.24.7",
"@babel/types": "^7.24.7",
"@biomejs/biome": "^1.8.3",
"@capsizecss/core": "^4.1.2",
"@capsizecss/metrics": "^3.3.0",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@tokens-studio/sd-transforms": "^1.0.0",
"@types/babel__core": "^7.20.5",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.0.0",
"fast-glob": "^3.3.2",
"http-server": "^14.1.1",
"lodash-es": "^4.17.21",
"prettier": "^3.3.3",
"style-dictionary": "^4.0.0",
"svg2vectordrawable": "^2.9.1",
"tsx": "^4.15.6",
"typescript": "^5.4.5"
},
"dependencies": {},
"peerDependencies": {
"@types/react": "*",
"react": "^17 || ^18"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"@types/react": {
"optional": true
}
}
}