-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.55 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
55
56
57
58
{
"name": "vuecodit",
"version": "0.0.11",
"description": "A little code editor for Vuejs",
"repository": "https://github.com/synw/vuecodit",
"scripts": {
"watch": "vite build --watch",
"compile": "vite build",
"emit": "vue-tsc --declaration --emitDeclarationOnly",
"css": "npx tailwindcss -i ./dist/style.css -o ./dist/twstyle.css --minify",
"cpcss": "rm -f ./dist/style.css && mv ./dist/twstyle.css ./dist/style.css && rm -f ./dist/twstyle.css",
"build": "run-s compile emit css cpcss"
},
"dependencies": {
"@vueuse/core": "^9.1.1",
"highlight.js": "^11.6.0"
},
"peerDependencies": {
"vue": "^3.2.31"
},
"devDependencies": {
"@types/highlight.js": "^10.1.0",
"@types/node": "^18.13.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/compiler-sfc": "^3.2.31",
"autoprefixer": "^10.4.4",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"postcss": "^8.4.12",
"sass": "^1.50.0",
"tailwindcss": "^3.0.23",
"tailwindcss-semantic-colors": "^0.2.0",
"tslib": "^2.3.1",
"typescript": "^4.6.3",
"vite": "^4.0.4",
"vue": "^3.2.31",
"vue-docgen-cli": "^4.61.2",
"vue-tsc": "^0.40.5"
},
"files": [
"dist"
],
"style": "./dist/style.css",
"main": "./dist/vuecodit.umd.js",
"module": "./dist/vuecodit.mjs",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/vuecodit.mjs"
},
"./style.css": "./dist/style.css"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT"
}