-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.55 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
{
"name": "pinia-logger",
"version": "1.3.13",
"description": "Lightweight logger for Pinia",
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"pinia",
"store",
"vuex",
"logger",
"log",
"console",
"typescript",
"nuxt",
"vue"
],
"repository": {
"type": "git",
"url": "https://github.com/cwdx/pinia-logger"
},
"scripts": {
"dev": "cd tests && npm run dev",
"lint": "eslint --ext .js,.ts,.vue src tests --fix && prettier --write src tests",
"build": "npm run lint && tsc -p . && cp package.json dist && cp README.md dist && cp README-nuxt.md dist",
"build:nuxt": "rm -rf packages/nuxt && mkdir -p packages/nuxt && npm run build && cp dist/nuxt.js packages/nuxt/index.js && cp dist/nuxt.d.ts packages/nuxt/index.d.ts && cp dist/nuxt.js.map packages/nuxt/index.js.map && cp README.md packages/nuxt/README.md && cp package.json packages/nuxt/package.json",
"install:tests": "cd tests && npm install",
"deploy": "npm run build && cd dist && npm publish"
},
"author": "",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@nuxt/types": "^2.16.3",
"@rushstack/eslint-patch": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"eslint": "^8.32.0",
"eslint-plugin-vue": "^9.9.0",
"nuxt": "^3.4.0",
"pinia": "^2.0.29",
"pinia-logger": "^1.3.11",
"prettier": "^2.8.3",
"typescript": "^4.9.4"
}
}