-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.12 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "mali-signali",
"version": "1.2.0",
"author": "Aleksandar Ružičić",
"license": "MIT",
"description": "A Lightweight, framework-agnostic TypeScript library for reactive state management.",
"keywords": [
"state",
"state management",
"signal",
"effect",
"signal pattern",
"reactivity"
],
"homepage": "https://github.com/raleksandar/mali-signali",
"repository": "github:raleksandar/mali-signali",
"bugs": {
"url": "https://github.com/raleksandar/mali-signali/issues"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"publishConfig": {
"directory": "package"
},
"clean-publish": {
"withoutPublish": true,
"tempDir": "package",
"fields": [
"packageManager",
"pnpm",
"publishConfig",
"scripts"
]
},
"scripts": {
"build": "pkgroll --target=node20 --minify --sourcemap",
"lint": "eslint ./src",
"postpublish": "rm -rf ./package",
"prepublishOnly": "pnpm lint && pnpm typecheck && pnpm test && pnpm build && rm -rf ./package && clean-publish && attw --pack ./package",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.16.4",
"@eslint/js": "9.15.0",
"@types/eslint__js": "8.42.3",
"@types/node": "22.9.0",
"@vitest/coverage-v8": "2.1.1",
"clean-publish": "5.1.0",
"eslint": "9.14.0",
"glob": "11.0.0",
"happy-dom": "15.7.4",
"pkgroll": "2.5.0",
"prettier": "3.3.3",
"tsx": "4.19.2",
"typescript": "5.6.3",
"typescript-eslint": "8.15.0",
"typescript-eslint-language-service": "5.0.5",
"vitest": "2.1.1"
},
"packageManager": "[email protected]+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228"
}