-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.91 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
{
"name": "nataicons",
"version": "3.0.1",
"description": "A fun-themed simple open source icon made by the folks at Natatoko.",
"author": "Afnizar Nur Ghifari <[email protected]>",
"homepage": "https://github.com/afnizarnur/nataicons#readme",
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run build:icons && npm run build:vue && npm run build:react",
"build:icons": "node ./scripts/build-icons.js && npm run icons:optimize && npm run icons:sprite-all && npm run icons:sprite-24x24 && npm run icons:sprite-20x20",
"build:vue": "node ./scripts/build-vue.js && rollup -c rollup.config.js",
"build:react": "node ./scripts/build-react.js && rollup -c rollup.config.react.js",
"icons:get": "figma-assets-generator",
"icons:sprite-all": "svg-sprite --svg-namespace-classnames false --symbol --symbol-dest . --symbol-sprite nataicons-sprite.svg './icons/./24x24/*.svg' './icons/./20x20/*.svg'",
"icons:sprite-24x24": "svg-sprite --svg-namespace-classnames false --symbol --symbol-dest . --symbol-sprite nataicons-24x24-sprite.svg './icons/./24x24/*.svg'",
"icons:sprite-20x20": "svg-sprite --svg-namespace-classnames false --symbol --symbol-dest . --symbol-sprite nataicons-20x20-sprite.svg './icons/./20x20/*.svg'",
"icons:optimize": "svgo icons/24x24 icons/20x20 --config .svgo.yaml --pretty --indent=2",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "https;//github.com/afnizarnur/nataicons"
},
"keywords": [
"icons",
"design",
"minimal",
"svg"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-private-property-in-object": "^7.24.7",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/react": "^18.3.5",
"@vue/babel-preset-jsx": "^1.1.2",
"@vue/compiler-dom": "^3.0.0",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^8.1.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"camelcase": "^6.1.0",
"dedent": "^0.7.0",
"figma-assets-generator": "^1.2.0",
"fs": "0.0.1-security",
"release-it": "^17.6.0",
"rimraf": "^3.0.2",
"rollup": "^2.29.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"svg-sprite": "^1.5.0",
"svgo": "^1.3.2",
"vue-template-compiler": "^2.6.12"
},
"files": [
"icons",
"nataicons-sprite.svg",
"nataicons-24x24-sprite.svg",
"nataicons-20x20-sprite.svg",
"README.md",
"LICENSE"
],
"dependencies": {
"@babel/runtime": "^7.25.6"
},
"release-it": {
"$schema": "https://unpkg.com/release-it/schema/release-it.json",
"github": {
"release": true
}
}
}