-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.72 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "cuprum",
"version": "0.2.0",
"description": "Tiny state management library",
"type": "module",
"main": "dist/bundle.common.min.js",
"module": "dist/bundle.min.js",
"types": "dist/cuprum.d.ts",
"sideEffects": false,
"scripts": {
"prepare": "husky",
"start": "http-server -o demo/ --silent",
"build": "rollup --config --sourcemap --bundleConfigAsCjs",
"dev": "rollup --config --sourcemap --bundleConfigAsCjs --watch",
"release": "npm i --package-lock --ignore-scripts && npm test && npm run build && npm publish",
"test": "playwright test",
"lint": "eslint .",
"prettier": "prettier --config .prettierrc.json src/*.ts *.json --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edwinm/cuprum.git"
},
"files": [
"src/cuprum.ts",
"dist/cuprum.d.ts",
"dist/bundle.min.js",
"dist/bundle.min.js.map",
"dist/bundle.common.min.js",
"dist/bundle.common.min.js.map"
],
"author": {
"name": "Edwin Martin",
"email": "edwin@bitstorm.org",
"url": "https://bitstorm.org/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/edwinm/cuprum/issues"
},
"homepage": "https://github.com/edwinm/cuprum#readme",
"devDependencies": {
"@eslint/js": "10.0.1",
"@playwright/test": "1.61.1",
"@rollup/plugin-replace": "6.0.3",
"@rollup/plugin-terser": "1.0.0",
"@types/node": "25.9.5",
"eslint": "10.2.0",
"eslint-config-prettier": "10.1.8",
"http-server": "14.1.1",
"husky": "9.1.7",
"prettier": "3.8.1",
"pretty-quick": "4.2.2",
"rollup": "4.60.1",
"rollup-plugin-typescript2": "0.37.0",
"tslib": "2.8.1",
"typescript": "6.0.2",
"typescript-eslint": "8.58.0"
}
}