-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.79 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.79 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
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
{
"name": "@cosmicmind/patternjs",
"version": "0.0.1-rc-113025-3",
"description": "A library of Design Patterns in TypeScript.",
"keywords": [
"typescript",
"design-patterns",
"library",
"cosmicmind",
"patternjs"
],
"author": {
"name": "Daniel Jonathan",
"email": "daniel@cosmicverse.org"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/cosmicmind/patternjs.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-113025-1",
"vite": "^7.2.4",
"vite-plugin-dts": "^4.5.4"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@stylistic/eslint-plugin-js": "^4.4.1",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.39.1",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"terser": "^5.44.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0",
"vitest": "^3.2.4"
}
}