-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
93 lines (93 loc) · 2.64 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@easylogic/editor",
"version": "0.13.4",
"description": "Fantastic Web Design Tool ",
"types": "./index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"main": "./dist/editor.umd.js",
"module": "./dist/editor.es.js",
"exports": {
"./style.css": "./dist/style.css",
"./pathkit.wasm": "./dist/pathkit.wasm",
".": {
"import": "./dist/editor.es.js",
"require": "./dist/editor.umd.js"
}
},
"dependencies": {
"@entityjs/entityjs": "0.0.6",
"array-organizer": "^1.5.7",
"eslint-plugin-prettier": "^4.0.0",
"fit-curve": "^0.2.0",
"gl-matrix": "^3.3.0",
"js-video-url-parser": "^0.4.3",
"nurbs": "^1.1.1",
"open-color": "^1.9.1",
"pathkit-wasm": "^0.7.0",
"svg-arc-to-cubic-bezier": "^3.2.0",
"yorkie-js-sdk": "^0.1.11"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"adorable-css": "^0.5.2",
"autoprefixer": "^9.8.6",
"cssnano": "^5.0.13",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-jsconfig": "^1.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx": "^0.1.0",
"happy-dom": "^2.25.1",
"husky": "^7.0.4",
"postcss": "^8.4.4",
"prettier": "2.6.2",
"release-it": "^14.6.2",
"rollup-plugin-copy": "^3.4.0",
"sass": "^1.44.0",
"typescript": "^4.6.3",
"vite": "^2.9.1",
"vite-plugin-copy": "^0.1.6",
"vite-plugin-dts": "^1.0.5",
"vite-plugin-eslint": "^1.5.2",
"vite-plugin-replace": "^0.1.1",
"vitest": "0.0.107"
},
"scripts": {
"render": "node ./saparo/index.js",
"vite:dev": "vite --config=vite.config.js",
"vite:dist": "vite build --config=vite.dist.config.js",
"vite:dist:watch": "vite build --config=vite.dist.config.js --watch",
"vite:prod": "vite build --config=vite.prod.config.js && npm run copy:resource",
"release": "release-it *",
"copy:resource": "cp CNAME docs/",
"build": "npm run vite:prod && npm run vite:dist",
"build:watch": "npm run vite:dist:watch",
"dev": "npm run vite:dev",
"test": "vitest",
"coverage": "vitest --coverage",
"prepare": "husky install",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore --fix src",
"format": "prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/easylogic/editor.git"
},
"keywords": [
"CSS",
"CODE",
"Editor",
"Path",
"SVG"
],
"author": "easylogic",
"license": "MIT",
"bugs": {
"url": "https://github.com/easylogic/editor/issues"
},
"homepage": "https://editor.easylogic.studio/"
}