-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.41 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
{
"type": "module",
"name": "fysics",
"version": "1.1.56",
"description": "State Management Module",
"license": "MIT",
"homepage": "https://github.com/intellibus/fysics#readme",
"repository": {
"type": "git",
"url": "https://github.com/intellibus/fysics.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"fysics",
"state management"
],
"scripts": {
"build": "pnpm run esbuild & pnpm run typedef",
"esbuild": "esbuild src/*.ts --minify --outdir=dist --platform=node --target=node14 --format=esm",
"typedef": "tsc -d src/*.ts --declarationDir dist --emitDeclarationOnly",
"prepublish": "pnpm run build",
"format": "prettier --write ./**/*.ts",
"lint": "eslint ./**/*.ts -f mo",
"lint:fix": "eslint --fix ./**/*.ts -f mo",
"test:all": "uvu -r tsm test",
"test:unit": "uvu -r tsm test/unit",
"test:integration": "uvu -r tsm test/integration",
"test:all:ci": "c8 --reporter lcov uvu -r tsm test",
"test:unit:ci": "c8 --reporter lcov uvu -r tsm test/unit",
"test:integration:ci": "c8 --reporter lcov uvu -r tsm test/integration",
"prepare": "husky install",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@commitlint/types": "18.4.3",
"@semantic-release/commit-analyzer": "11.1.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "9.2.3",
"@semantic-release/npm": "11.0.1",
"@semantic-release/release-notes-generator": "12.1.0",
"@types/lodash": "4.14.202",
"@types/node": "20.10.3",
"@typescript-eslint/eslint-plugin": "6.13.1",
"@typescript-eslint/parser": "6.13.1",
"c8": "8.0.1",
"commitizen": "4.3.0",
"conventional-changelog-conventionalcommits": "7.0.2",
"cz-conventional-changelog": "3.3.0",
"dotenv": "16.3.1",
"esbuild": "0.19.8",
"eslint": "8.54.0",
"eslint-config-intellibus": "1.0.155",
"eslint-formatter-mo": "1.2.0",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"prettier": "3.0.3",
"pretty-quick": "3.1.3",
"semantic-release": "22.0.7",
"semantic-release-interval": "1.0.46",
"ts-node": "10.9.1",
"tsm": "2.3.0",
"typescript": "5.2.2",
"uvu": "0.5.6"
},
"dependencies": {
"immer": "^9.0.14",
"lodash": "^4.17.21",
"rxjs": "^7.5.5"
}
}