-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.33 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.33 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
{
"name": "@iota/apps-ui-icons",
"version": "0.7.5",
"repository": "https://github.com/iotaledger/ts-packages",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"clean:src": "rimraf src/**",
"clean:svgs": "rimraf svgs/**",
"clean:all": "pnpm clean:src && pnpm clean:svgs",
"generate": "node scripts/preprocess.mjs && svgr --config-file svgrrc.config.js svgs",
"prettier:check": "prettier -c --ignore-unknown --ignore-path=../../.prettierignore --ignore-path=.prettierignore .",
"prettier:fix": "prettier -w --ignore-unknown --ignore-path=../../.prettierignore --ignore-path=.prettierignore .",
"eslint:check": "eslint --max-warnings=0 .",
"eslint:fix": "pnpm run eslint:check --fix",
"lint": "pnpm run eslint:check && pnpm run prettier:check",
"lint:fix": "pnpm run eslint:fix && pnpm run prettier:fix"
},
"devDependencies": {
"@svgr/cli": "^8.1.0",
"@svgr/core": "^8.1.0",
"@types/react": "^18.3.3",
"react": "^18.3.1",
"rimraf": "^5.0.1",
"tsup": "^8.3.5",
"typescript": "^5.5.3"
},
"peerDependencies": {
"react": "^18 || ^19"
}
}