-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.21 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
{
"author": "Dario Sechi",
"devDependencies": {
"@aracna/core": "^1.1.92",
"@microsoft/api-extractor": "^7.47.9",
"@types/node": "^22.7.5",
"@vitest/coverage-v8": "^2.1.2",
"@vitest/ui": "^2.1.2",
"dayjs": "^1.11.13",
"esbuild": "^0.24.0",
"glob": "^11.0.0",
"prettier": "^3.3.3",
"superstruct": "^2.0.2",
"tslib": "^2.7.0",
"typedoc": "^0.26.9",
"typescript": "^5.6.3",
"vitest": "^2.1.2"
},
"engines": {
"node": ">=16",
"pnpm": ">=8"
},
"exports": {
"types": "./index.d.ts",
"import": "./index.js",
"require": "./index.cjs"
},
"license": "MIT",
"main": "index.cjs",
"module": "index.js",
"name": "@aracna/state-manager",
"packageManager": "[email protected]",
"peerDependencies": {
"@aracna/core": ">= 1.1.0"
},
"publishConfig": {
"directory": "dist"
},
"repository": "https://github.com/aracna/state-manager",
"scripts": {
"build": "rm -rf dist && node esbuild.mjs && pnpm tsc && pnpm api-extractor run --local",
"prepublish": "pnpm test && pnpm build && cp LICENSE package.json README.md dist",
"test": "vitest run"
},
"sideEffects": false,
"type": "module",
"types": "index.d.ts",
"version": "1.0.41"
}