-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.04 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
{
"name": "atomize_icons",
"version": "0.2.9",
"type": "module",
"description": "react icons for the figma atomize design system",
"main": "react/index.js",
"engines": {
"node": ">=12.0.0"
},
"files": [
"react/index.js",
"react/index.d.ts",
"react/src"
],
"peerDependencies": {
"react": ">= 16"
},
"size-limit": [
{
"path": [
"react/index.js"
]
}
],
"scripts": {
"size": "size-limit",
"clean": "rimraf package styles output *.tgz",
"tgz": "rimraf *.tgz",
"figma:export-components": "figma-export use-config figma.config.cjs",
"test": "node --experimental-modules test.mjs",
"np": "np",
"build": "npm run clean && npm run figma:export-components ",
"lint": "prettier --write . --ignore-unknown",
"bundle": "rollup --config",
"release": "rimraf *.tgz && npm run lint && npm run np ",
"prepare": "husky install"
},
"author": "nzai kilonzo",
"license": "MIT",
"homepage": "https://atomize-icons-website.vercel.app",
"repository": {
"type": "git",
"url": "git+https://github.com/nzaih1999/atomize_icons.git"
},
"bugs": {
"url": "https://github.com/nzaih1999/atomize_icons/issues"
},
"keywords": [
"icons",
"svg",
"react",
"atomize design system"
],
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@figma-export/cli": "^4.7.0",
"@figma-export/output-components-as-svg": "^4.7.0",
"@figma-export/output-components-as-svgr": "^4.7.0",
"@figma-export/output-styles-as-sass": "^4.7.0",
"@figma-export/transform-svg-with-svgo": "^4.7.0",
"@rollup/plugin-typescript": "^11.1.2",
"@size-limit/file": "^8.2.6",
"@types/react": "^18.2.15",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.3.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"np": "^8.0.4",
"npm-run-all": "^4.1.5",
"prettier": "3.0.0",
"react": "^18.2.0",
"rimraf": "^5.0.1",
"rollup": "^3.26.2",
"size-limit": "^8.2.6",
"typescript": "^5.1.6"
}
}