-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (31 loc) · 838 Bytes
/
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
{
"name": "k-signals",
"description": "Js signals implementation, make your state reactive",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc",
"test": "jest --silent=false",
"prepublishOnly": "npm run test && npm run lint && npm run build",
"lint": "npx @biomejs/biome format ./src",
"lint:fix": "npx @biomejs/biome format ./src --fix"
},
"dependencies": {},
"devDependencies": {
"@biomejs/biome": "^1.9.1",
"@types/jest": "^29.5.13",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2"
},
"author": {
"name": "Kostayne",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Kostayne/k-signals"
},
"keywords": ["signals", "reactive"],
"license": "MIT"
}