-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "@weedzcokie/store",
"version": "2.0.2",
"description": "Tiny store management",
"type": "module",
"main": "dist/index.js",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "tsc --noEmit",
"prepublish": "pnpm run build"
},
"files": [
"dist/"
],
"author": "Linus Björklund",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"rollup": "^4.21.0",
"tslib": "^2.7.0",
"typescript": "^5.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weedz/store.git"
},
"keywords": [
"state",
"store"
],
"bugs": {
"url": "https://github.com/weedz/store/issues"
},
"homepage": "https://github.com/weedz/store#readme",
"packageManager": "[email protected]+sha512.8e4c3550fb500e808dbc30bb0ce4dd1eb614e30b1c55245f211591ec2cdf9c611cabd34e1364b42f564bd54b3945ed0f49d61d1bbf2ec9bd74b866fcdc723276"
}