-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.94 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
{
"name": "@cosmicmind/domainjs",
"version": "0.0.1-rc-011825-4.1",
"description": "A domain-driven design framework for scalable systems.",
"keywords": ["typescript", "domain-driven-design", "framework", "cosmicmind", "domainjs"],
"author": {
"name": "Daniel Jonathan",
"email": "[email protected]"
},
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/cosmicmind/domainjs.git"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "dist/lib-cjs.cjs",
"module": "dist/lib-es.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/lib-es.js",
"require": "./dist/lib-cjs.cjs"
}
},
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"lint": "eslint --fix",
"release": "npm run release:lib",
"release:lib": "vite build --config vite.config.ts",
"develop": "npm run develop:lib",
"develop:lib": "vite build --config vite.config.ts --mode development",
"watch": "vite build --watch --config vite.config.ts --mode development",
"test": "vitest",
"test:unit": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@cosmicmind/foundationjs": "^0.0.1-rc-011825-1.2",
"@cosmicmind/patternjs": "^0.0.1-rc-011825-3",
"npm-run-all": "^4.1.5",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-plugin-dts": "^4.5.0",
"vitest": "^3.0.2"
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@vitest/coverage-v8": "^3.0.2",
"eslint": "^9.18.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"lib0": "^0.2.99",
"terser": "^5.37.0",
"ts-node": "^10.9.2",
"yup": "^1.6.1"
}
}