-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.74 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "restatement",
"version": "0.2.0",
"description": "remote state management for front-end applications",
"author": "Caio Oliveira <[email protected]>",
"homepage": "https://github.com/CaioOliveira793/restatement#readme",
"repository": {
"type": "git",
"url": "https://github.com/CaioOliveira793/restatement+git"
},
"bugs": {
"url": "https://github.com/CaioOliveira793/restatement/issues"
},
"keywords": [
"state",
"async",
"remote",
"remote-state",
"typescript",
"frontent"
],
"license": "MIT",
"type": "module",
"source": "src/lib.ts",
"module": "dist/lib-esm.js",
"main": "dist/lib-common.js",
"types": "dist/lib-type.d.ts",
"sideEffects": false,
"files": [
"dist/*"
],
"scripts": {
"check:type": "tsc --noEmit",
"check:lint": "eslint . --ext ts,js,json",
"check": "run-z check:type,check:lint",
"build:js": "rollup --config",
"build:type": "dts-bundle-generator src/lib.ts --no-check --out-file 'dist/lib-type.d.ts'",
"build": "run-z clear:build build:js,build:type",
"test": "vitest run",
"bench": "vitest bench --run",
"clear:coverage": "rimraf coverage",
"clear:build": "rimraf dist",
"clear": "rimraf dist coverage"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@vitest/coverage-v8": "^1.5.0",
"dts-bundle-generator": "^9.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"glob": "^10.3.12",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.14.1",
"run-z": "^2.0.0",
"typescript": "^5.4.5",
"vite": "^5.2.8",
"vitest": "^1.5.0"
},
"packageManager": "[email protected]"
}