-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.69 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.69 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
59
60
61
62
{
"name": "vuepython",
"version": "0.1.1",
"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/vuepython.css -o ./dist/twstyle.css --minify",
"cpcss": "rm -f ./dist/vuepython.css && mv ./dist/twstyle.css ./dist/style.css && rm -f ./dist/twstyle.css",
"build": "run-s compile emit css cpcss"
},
"dependencies": {
"@nanostores/vue": "^0.11.0",
"@vueuse/core": "^12.7.0",
"highlight.js": "^11.11.1",
"usepython": "^0.1.1",
"vuecodit": "^0.0.11"
},
"peerDependencies": {
"vue": "^3.2.31"
},
"devDependencies": {
"@snowind/plugin": "0.5.0",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"@types/highlight.js": "^10.1.0",
"@types/node": "^22.13.5",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/compiler-sfc": "^3.5.13",
"autoprefixer": "^10.4.20",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"postcss": "^8.5.3",
"sass": "^1.85.1",
"tailwindcss": "^3.4.1",
"tailwindcss-semantic-colors": "^0.2.0",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vite": "^6.2.0",
"vue": "^3.5.13",
"vue-tsc": "^2.2.4"
},
"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"
}