-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1007 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
39
40
41
42
43
{
"name": "vue-state-store",
"version": "3.0.1",
"description": "📦 Vue State Management (with Publish & Subscribe pattern)",
"scripts": {
"build": "tsc",
"start": "tsc && node dist/index.js",
"clean": "rm -rf ./dist/*.*",
"lint": "prettier --write \"./src/**/*.{js,ts}\"",
"export": "tsc && webpack"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"vue",
"vuejs",
"vue-module",
"state",
"state-management",
"store",
"state-store",
"nuxt",
"nuxtjs",
"nuxt-module",
"typescript"
],
"homepage": "https://a-ha.io",
"repository": {
"type": "git",
"url": "https://github.com/AhaOfficial/vue-state-store"
},
"author": "AhaOfficial",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/node": "^14.14.0",
"@vue/composition-api": "*",
"prettier": "^2.1.2",
"terser-webpack-plugin": "^5.0.0",
"webpack": "^5.1.3",
"webpack-cli": "^4.1.0"
}
}