-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.75 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
{
"name": "@ubie/ubie-icons-native",
"repository": {
"type": "git",
"url": "https://github.com/ubie-oss/ubie-icons-native.git"
},
"version": "1.0.3",
"description": "Icons used in Ubie native apps.",
"exports": {
".": {
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"module": "dist/index.mjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"figma": "node ./scripts/figma.js",
"build:svg": "svgr --native --template native-template.js -d src assets",
"build:ts": "tsup",
"build:copy-svgs": "test -d dist || mkdir dist && cp -R assets/*.svg dist",
"build": "npm run build:svg && npm run build:ts && npm run build:copy-svgs",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@storybook/addon-actions": "^8.0.9",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-interactions": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
"@storybook/addon-webpack5-compiler-swc": "^1.0.2",
"@storybook/react-webpack5": "^8.0.9",
"@svgr/cli": "^8.1.0",
"@types/react": "^18.2.79",
"@ubie/prettier-config": "^0.1.0",
"node-fetch": "^3.3.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-native-svg": "^15.1.0",
"storybook": "^8.0.9",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@types/react": "^17 || ^18",
"react": "^17 || ^18",
"react-native-svg": "^15.1.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"license": "MIT"
}