-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.34 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
{
"name": "vue-simple-compiler",
"version": "0.0.7",
"description": "A lib to compile Vue Single-File Component into plain JavaScript & CSS.",
"keywords": [
"compiler",
"vue",
"vue.js"
],
"author": "Jinjiang <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Jinjiang/vue-simple-compiler.git"
},
"bugs": {
"url": "https://github.com/Jinjiang/vue-simple-compiler/issues"
},
"homepage": "https://github.com/Jinjiang/vue-simple-compiler#readme",
"main": "dist/index.js",
"types": "src/index.ts",
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"dev": "vitest dev",
"dev:ui": "vitest dev --ui",
"build": "tsc --project tsconfig.build.json",
"test": "vitest run"
},
"dependencies": {
"hash-sum": "^2.0.0",
"magic-string": "^0.27.0",
"source-map": "^0.6.1"
},
"peerDependencies": {
"less": "^4.1.3",
"sass": "^1.62.1",
"typescript": "^5.2.2",
"vue": "^3.2.47"
},
"devDependencies": {
"@testing-library/vue": "^6.6.1",
"@types/find-root": "^1.1.2",
"@types/fs-extra": "^11.0.2",
"@vitejs/plugin-vue": "^4.4.0",
"@vitest/ui": "^0.34.6",
"find-root": "^1.1.0",
"fs-extra": "^11.1.1",
"jsdom": "^22.1.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
}
}