-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 914 Bytes
/
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
{
"name": "vue-uhtml",
"version": "0.6.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "NODE_ENV=test web-test-runner test/**/*.test.js --coverage --node-resolve",
"release": "release-it"
},
"devDependencies": {
"@open-wc/testing": "^3.1.7",
"@vue/reactivity": "^3.2.47",
"@web/test-runner": "^0.15.1",
"release-it": "^15.9.0",
"sinon": "^15.0.2",
"typescript": "^5.0.2",
"uhtml": "^3.1.0",
"vite": "^4.2.0"
},
"exports": "./dist/index.js",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"files": [
"dist"
],
"author": "Andrew Beng",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/andrewbeng89/vue-uhtml.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}