-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.03 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.03 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
{
"name": "druxt-module-template",
"version": "0.0.0",
"keywords": [
"druxt",
"module"
],
"exports": {
".": {
"require": "./dist/index.ssr.js",
"import": "./dist/index.esm.js"
},
"./components/*": "./dist/components/*"
},
"main": "dist/index.ssr.js",
"module": "dist/index.esm.js",
"files": [
"dist",
"templates"
],
"scripts": {
"build": "siroc build",
"build:watch": "siroc build --watch",
"changeset": "changeset",
"lint": "eslint --ext .js,.vue src",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@babel/core": "7.20.2",
"@babel/preset-env": "7.20.2",
"@changesets/cli": "2.25.2",
"@vue/test-utils": "1.3.3",
"babel-core": "7.0.0-bridge.0",
"druxt": "0.21.0",
"esbuild-jest": "0.5.0",
"eslint": "8.28.0",
"eslint-plugin-nuxt": "4.0.0",
"jest": "27.5.1",
"siroc": "0.16.0",
"vue-jest": "3.0.7",
"vue-template-compiler": "2.7.14"
},
"publishConfig": {
"access": "public"
}
}