-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
73 lines (73 loc) · 2.2 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
{
"name": "solid-icons",
"version": "1.1.0",
"description": "Modern solution for use icons on SolidJS",
"author": "Ignacio Zsabo",
"license": "MIT",
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "onchange -i -k 'src/build/**/*.ts' -- yarn build",
"test": "vitest --config ./vitest.config.ts",
"test:run": "vitest run --config ./vitest.config.ts",
"coverage": "vitest --config ./vitest.config.ts --coverage",
"submodule": "git submodule update --init --recursive",
"build": "node --no-warnings --loader ts-node/esm --experimental-specifier-resolution=node ./src/build/index.ts",
"build:lib": "rollup --configPlugin @rollup/plugin-typescript -c",
"build:all": "shx rm -rf ./dist_all && shx mkdir ./dist_all && yarn build --web && shx cp ./all_package.json ./dist_all/package.json",
"publish": "yarn build && npm publish ./dist",
"prepare": "husky install && yarn submodule"
},
"keywords": [
"solidjs",
"icons",
"pack",
"svg",
"solid"
],
"devDependencies": {
"@rollup/plugin-typescript": "^11.0.0",
"@types/node": "^18.11.18",
"@types/svg-parser": "^2.0.3",
"@types/svgo": "2.6.4",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vitest/coverage-c8": "^0.27.1",
"arg": "^5.0.2",
"chalk": "^5.2.0",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.0.3",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"onchange": "^7.1.0",
"prettier": "2.8.3",
"rollup": "^3.10.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-preset-solid": "^2.0.1",
"shx": "^0.3.4",
"solid-js": "^1.7.12",
"solid-testing-library": "^0.5.0",
"svgo": "3.0.2",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vite-plugin-solid": "^2.5.0",
"vitest": "^0.27.1"
},
"engines": {
"node": ">= 16"
},
"peerDependencies": {
"solid-js": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/x64Bits/solid-icons.git"
},
"bugs": {
"url": "https://github.com/x64Bits/solid-icons/issues"
},
"homepage": "https://solid-icons.vercel.app"
}