-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.1 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
{
"name": "@elf-framework/icon",
"version": "0.0.12",
"description": "Icon library for sapa that use material icons",
"types": "./index.d.ts",
"type": "module",
"sideEffects": false,
"main": "./umd/index.js",
"module": "./index.js",
"devDependencies": {
"@changesets/changelog-git": "^0.1.13",
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.25.0",
"@elf-framework/sapa": "*",
"@material-design-icons/svg": "^0.13.0",
"@rgrove/parse-xml": "^4.0.0",
"changeset": "^0.2.6",
"eslint": "^8.25.0",
"vite": "^3.2.0-beta.1",
"vitest": "0.24.1"
},
"scripts": {
"vite:dist": "vite build --config=vite.dist.config.js",
"watch": "vite build --config=vite.dist.config.js --watch",
"blank:watch": "npm run watch",
"release": "release-it *",
"build": "npm run vite:dist",
"test": "vitest",
"coverage": "vitest --coverage",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore --fix src",
"format": "prettier . --write",
"clean": "rm -rf ./src/icons/* ./dist/esm/icons/* ./dist/umd/icons/* ",
"generate": "npm run clean && node scripts/generator.js",
"build:icon": "node scripts/build-icon.js",
"copy:lib": "cp -R src/components src/icons src/index.js dist/lib/",
"copy:type": "cp -R src/icons/*.ts dist/esm/icons",
"copy:root": "cp -R template/index.js dist && cp -R template/root_icons/* dist",
"publish-copy": "mkdir -p dist/lib && npm run copy:lib && cp -R src/icons/index.js dist/esm/icons && npm run copy:type && npm run copy:root",
"pack": "npm run publish-copy && cp package.json dist/ && cd dist && npm pack",
"pub": "npm run publish-copy && cp package.json dist/ && cd dist && npm publish",
"changeset": "changeset",
"version-packages": "changeset version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elf-framework/editor.git"
},
"keywords": [
"SVG",
"ICON"
],
"author": "easylogic",
"license": "MIT",
"bugs": {
"url": "https://github.com/elf-framework/editor/issues"
},
"homepage": "https://editor.easylogic.studio/"
}