-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.07 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.07 KB
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
{
"name": "tsdkarc",
"version": "1.2.3",
"description": "TsdkArc is an elegant and fully type-safe module composable library",
"repository": "tsdk-monorepo/tsdkarc",
"bugs": "https://github.com/tsdk-monorepo/tsdkarc/issues",
"homepage": "https://arc.tsdk.dev",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "concurrently \"npm run build:cjs\" \"npm run build:esm\"",
"build:cjs": "rm -rf lib && tsc --project tsconfig.cjs.json && rm -rf lib/tests",
"build:esm": "rm -rf esm && tsc --project tsconfig.esm.json && rm -rf esm/tests",
"checktype": "tsc --noEmit",
"test": "npm run checktype && vitest --run --testTimeout=120000 --hookTimeout=60000"
},
"files": [
"lib/*",
"esm/*",
"assets",
"README.md"
],
"keywords": [
"typesafe",
"tsdk",
"module composable",
"dependency injection"
],
"devDependencies": {
"typescript": "^5.9.3",
"@tsconfig/recommended": "^1.0.10",
"vitest": "^3.2.4",
"concurrently": "^9.2.1"
},
"license": "MIT"
}