-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.26 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.26 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@css-canvas/editor",
"description": "An optimized editor, just for CSS.",
"version": "1.0.4",
"type": "module",
"files": [
"dist/src/**",
"dist/index.d.ts",
"dist/index.js",
"dist/index.js.map",
"dist/index.umd.cjs",
"dist/index.umd.cjs.map",
"dist/style.css"
],
"main": "dist/index.umd.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"build-package": "SET NODE_ENV=development&& run-p type-check build-only",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gigabyte5671/CSS-Editor.git"
},
"keywords": [
"css",
"editor",
"library"
],
"author": {
"name": "Giga",
"email": "contact@zakweb.dev",
"url": "https://zakweb.dev/"
},
"dependencies": {
"known-css-properties": "^0.27.0",
"vue": "^3.2.47"
},
"devDependencies": {
"@types/node": "^18.14.2",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/tsconfig": "^0.1.3",
"npm-run-all": "^4.1.5",
"typescript": "~4.8.4",
"vite": "^4.1.4",
"vite-plugin-dts": "^2.1.0",
"vue-tsc": "^1.2.0"
}
}