-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
103 lines (103 loc) · 2.91 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@amadeus-it-group/tansu",
"type": "module",
"version": "1.0.0",
"description": "tansu is a lightweight, push-based framework-agnostic state management library. It borrows the ideas and APIs originally designed and implemented by Svelte stores and extends them with computed and batch.",
"keywords": [
"signals",
"signal",
"agnostic",
"reactive",
"store",
"state",
"model",
"interop",
"observable",
"computed",
"derived",
"readable",
"writable",
"svelte",
"state management",
"angular"
],
"typings": "./dist/package/index.d.ts",
"main": "./dist/package/index.cjs",
"module": "./dist/package/index.js",
"exports": {
"types": "./dist/package/index.d.ts",
"require": "./dist/package/index.cjs",
"default": "./dist/package/index.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AmadeusITGroup/tansu.git"
},
"bugs": {
"url": "https://github.com/AmadeusITGroup/tansu/issues"
},
"homepage": "https://github.com/AmadeusITGroup/tansu#readme",
"private": true,
"devDependencies": {
"@angular/common": "^18.2.10",
"@angular/compiler": "^18.2.10",
"@angular/compiler-cli": "^18.2.10",
"@angular/core": "^18.2.10",
"@angular/platform-browser": "^18.2.10",
"@angular/platform-browser-dynamic": "^18.2.10",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@microsoft/api-extractor": "^7.47.11",
"@rollup/plugin-typescript": "^12.1.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@vitest/coverage-v8": "^2.1.4",
"@vitest/ui": "^2.1.4",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"happy-dom": "^15.9.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"rollup": "^4.24.4",
"rxjs": "^7.8.1",
"svelte": "^5.1.9",
"typedoc": "^0.26.11",
"typescript": "^5.5.4",
"vitest": "^2.1.4",
"zone.js": "^0.14.10"
},
"scripts": {
"test": "vitest run",
"tdd": "vitest",
"tdd:ui": "vitest --ui",
"benchmark": "vitest bench --run",
"clean": "rm -rf dist temp",
"lint": "eslint {src,benchmarks}/{,**/}*.ts",
"build:rollup": "rollup --failAfterWarnings -c",
"build:dts": "tsc -p tsconfig.d.json",
"build:api": "api-extractor run",
"build": "npm run clean && npm run build:rollup && npm run build:dts && npm run build:api",
"prepare": "npm run build",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"docs": "typedoc"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"files": [
"dist/package"
]
}