-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.11 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
{
"name": "@skinnermc/icons",
"version": "1.9.0",
"description": "Skinner icons pack for React",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"typings": "dist/typings/index.d.ts",
"scripts": {
"docs": "node --experimental-modules --experimental-json-modules --unhandled-rejections=warn --es-module-specifier-resolution=node scripts/docs",
"build": "npm run-script build:icons",
"build:icons": "node --experimental-modules --experimental-json-modules --unhandled-rejections=warn --es-module-specifier-resolution=node scripts/icons && npm run-script build:all && npm run-script build:icons-tsc",
"build:icons-tsc": "cross-env NODE_ENV=production tsc --project tsconfig.dist.json --outDir dist/typings",
"build:cjs": "swc ts/ -d dist/ -C jsc.target=es5 -C module.type=commonjs",
"build:esm": "swc ts/ -d dist/esm/ -C jsc.target=es5",
"build:all": "npm run-script build:esm && npm run-script build:cjs"
},
"repository": "https://github.com/SkinnerMC/icons",
"homepage": "https://skinnermc.github.io/icons/",
"author": "MrZillaGold <Egor Pronin | mrzillagold@gmail.com>",
"license": "MIT",
"dependencies": {
"svg-baker-runtime": "^1.4.7"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.177",
"@types/react": "^18.0.9",
"@types/svg-baker-runtime": "^1.4.0",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.15.0",
"eslint-plugin-react": "^7.29.4",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"react": "^18.1.0",
"react-color": "^2.19.3",
"react-dom": "^18.1.0",
"style-loader": "^3.3.1",
"svg-baker": "^1.7.0",
"svgo": "^2.8.0",
"swc-loader": "^0.2.0",
"typescript": "^4.6.4",
"webpack": "^5.72.1",
"webpack-merge": "^5.8.0"
},
"peerDependencies": {
"@types/react": "^17.0.0",
"react": "^17.0.0"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"browserslist": [
"android >= 5",
"ios >= 10"
],
"sideEffects": false
}