-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 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
{
"name": "@webrecorder/hickory",
"version": "0.0.10",
"description": "Webrecorder's Design System",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/webrecorder/hickory.git"
},
"author": "emma <[email protected]>",
"scripts": {
"build:icons": "node scripts/build-icons.js",
"build:tokens": "node scripts/build-tokens.js",
"build": "yarn run build:icons && yarn run build:tokens"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@iconify/tools": "^4.0.5",
"prettier": "^3.3.3",
"style-dictionary": "^4.1.0",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]",
"dependencies": {
"@iconify/types": "^2.0.0"
},
"files": [
"tokens",
"icons",
"dist"
],
"exports": {
"./*": {
"types": "./dist/*.d.ts",
"require": "./dist/*.js",
"import": "./dist/*.mjs"
},
"./icons": {
"types": "./index.d.ts",
"require": "./index.js",
"import": "./index.mjs"
},
"./icons/*.svg": "./dist/icons/svg/*.svg",
"./tokens/raw/*": "./tokens/*"
}
}