-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.68 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
{
"name": "vuepython",
"version": "0.0.20",
"description": "Edit and run Python code in Vuejs",
"repository": "https://github.com/synw/vuepython",
"scripts": {
"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": {
"@nanostores/vue": "^0.10.0",
"@vueuse/core": "^10.9.0",
"highlight.js": "^11.9.0",
"usepython": "^0.1.0",
"vuecodit": "^0.0.11"
},
"peerDependencies": {
"vue": "^3.2.31"
},
"devDependencies": {
"@snowind/plugin": "0.5.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@types/highlight.js": "^10.1.0",
"@types/node": "^20.11.28",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/compiler-sfc": "^3.4.21",
"autoprefixer": "^10.4.18",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"postcss": "^8.4.35",
"sass": "^1.72.0",
"tailwindcss": "^3.4.1",
"tailwindcss-semantic-colors": "^0.2.0",
"tslib": "^2.6.2",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vue": "^3.4.21",
"vue-tsc": "^2.0.6"
},
"files": [
"dist"
],
"style": "./dist/style.css",
"main": "./dist/vuepython.umd.js",
"module": "./dist/vuepython.mjs",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/vuepython.mjs"
},
"./style.css": "./dist/style.css"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT"
}