forked from baptistejamin/petite-vue-csp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.92 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
63
64
65
66
67
68
69
{
"name": "petite-vue-csp",
"version": "0.9.1",
"description": "A petite-vue version that works with unsafe-eval",
"files": [
"dist",
"vite-plugin.d.ts",
"vite-plugin.mjs"
],
"main": "dist/petite-vue-csp.umd.js",
"unpkg": "dist/petite-vue-csp.iife.js",
"jsdelivr": "dist/petite-vue-csp.iife.js",
"module": "./dist/petite-vue-csp.es.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/petite-vue-csp.es.js",
"require": "./dist/petite-vue-csp.umd.js"
},
"./precompiled": {
"types": "./dist/types/precompiled.d.ts",
"import": "./dist/petite-vue-csp.precompiled.es.js"
},
"./vite": {
"types": "./vite-plugin.d.ts",
"import": "./vite-plugin.mjs"
}
},
"types": "./dist/types/index.d.ts",
"scripts": {
"dev": "vite",
"test": "node --test tests/*.test.mjs",
"build": "vite build && vite build --config vite.precompiled.config.ts && tsc --emitDeclarationOnly && rm -rf dist/types && mv dist/src dist/types",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "node scripts/release.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baptistejamin/petite-vue-csp.git"
},
"keywords": [
"vue"
],
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/petite-vue/discussions"
},
"homepage": "https://github.com/baptistejamin/petite-vue-csp#readme",
"devDependencies": {
"@vue/reactivity": "^3.5.17",
"@vue/shared": "^3.5.17",
"chalk": "^4.1.1",
"conventional-changelog-cli": "^2.1.1",
"enquirer": "^2.3.6",
"execa": "^5.0.0",
"prettier": "^2.3.0",
"safe-expression": "1.1.0",
"semver": "^7.3.5",
"typescript": "^4.4.3",
"vite": "^2.7.12"
},
"dependencies": {
"acorn": "^8.18.0",
"acorn-walk": "^8.3.5",
"magic-string": "^1.2.2",
"parse5": "^8.0.1"
}
}