-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.24 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.24 KB
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
{
"name": "@datalayer/icons-all",
"version": "0.0.0",
"private": true,
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"style"
],
"repository": {
"type": "git",
"url": "https://github.com/datalayer/icons.git"
},
"homepage": "https://datalayer.design",
"scripts": {
"build": "npm run build-icons && npm run build-app",
"build-app": "tsc && vite build",
"build-icons": "npm run build-optimized && npm run build-react",
"build-optimized": "npm run build-data1 && npm run build-data2 && npm run build-eggs",
"build-data1": "rimraf ./optimized/data && svgo --config=svgo.yaml -f ./svg/data1 -o ./optimized/data1 --pretty --indent=2",
"build-data2": "rimraf ./optimized/data && svgo --config=svgo.yaml -f ./svg/data2 -o ./optimized/data2 --pretty --indent=2",
"build-eggs": "rimraf ./optimized/eggs && svgo --config=svgo.yaml -f ./svg/eggs -o ./optimized/eggs --pretty --indent=2",
"build-react": "node ./scripts/build.js icons-react",
"build-vue": "node ./scripts/build.js vue",
"clean": "rimraf lib build dist tsconfig.tsbuildinfo optimized/data1 optimized/data2 optimized/eggs react/data1 react/data2 react/eggs",
"dev": "vite",
"landing:app": "tsc --watch",
"preview": "vite preview",
"start": "vite"
},
"dependencies": {
"@jupyterlab/ui-components": "^4.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"styled-components": "^5.3.10"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@primer/brand-primitives": "^0.51.0",
"@primer/octicons-react": "^19.15.1",
"@primer/react": "^37.19.0",
"@primer/react-brand": "^0.58.0",
"@svgr/core": "^5.5.0",
"@types/prettier": "^3.0.0",
"@types/react": "18.3.20",
"@types/react-dom": "18.3.6",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.3.3",
"@vue/compiler-dom": "^3.0.5",
"autoprefixer": "^10.4.14",
"camelcase": "^6.0.0",
"cheerio": "^1.0.0-rc.12",
"html-to-image": "^1.9.0",
"postcss": "^8.4.23",
"prettier": "^3.3.2",
"rimraf": "^6.0.1",
"svgo": "^1.3.2",
"typescript": "^5.8.3",
"vite": "^7.0.0",
"vite-plugin-svgr": "^4.3.0"
}
}