-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·45 lines (45 loc) · 1.2 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
{
"name": "@vuesion/nuxt-vanilla-extract",
"version": "0.0.3",
"description": "Add seek-oss/vanilla-extract to your nuxt application",
"repository": "vuesion/nuxt-vanilla-extract",
"license": "MIT",
"contributors": [
{
"name": "Johannes Werner <[email protected]>"
}
],
"files": [
"lib"
],
"main": "lib/module.js",
"scripts": {
"dev": "nuxt example",
"lint": "eslint --fix --ext .js,.vue .",
"release": "npm test && standard-version && git push --follow-tags && npm publish",
"test": "npm run lint && jest"
},
"dependencies": {
"@vanilla-extract/babel-plugin": "^1.1.0",
"@vanilla-extract/css": "^1.5.0",
"@vanilla-extract/webpack-plugin": "^2.1.0"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxtjs/eslint-config": "latest",
"@nuxtjs/module-test-utils": "latest",
"babel-eslint": "latest",
"babel-jest": "latest",
"eslint": "latest",
"husky": "latest",
"jest": "latest",
"nuxt-edge": "latest",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
}
}