-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.53 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@nothing-special/kaiware-lib",
"version": "0.11.0",
"type": "module",
"author": {
"name": "Garrett Downs",
"url": "https://nothingspecial.io"
},
"homepage": "https://github.com/nothingspecialdev/kaiware-lib",
"repository": {
"type": "git",
"url": "https://github.com/nothingspecialdev/kaiware-lib"
},
"scripts": {
"build": "rimraf build && rollup -c --bundleConfigAsCjs",
"build:watch": "rimraf build && rollup -c --bundleConfigAsCjs --watch",
"format": "prettier --check .",
"format:fix": "prettier --check --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ci": "vitest --coverage",
"commit": "git-cz"
},
"files": [
"build",
"index.d.ts"
],
"types": "./build/src/index.d.ts",
"module": "./build/src/index.mjs",
"main": "./build/src/index.cjs",
"exports": {
".": {
"types": "./build/src/index.d.ts",
"import": "./build/src/index.mjs",
"require": "./build/src/index.cjs"
},
"./lib": {
"types": "./build/src/lib/index.d.ts",
"import": "./build/src/lib/index.mjs",
"require": "./build/src/lib/index.cjs"
},
"./types": {
"types": "./build/src/types/index.d.ts",
"import": "./build/src/types/index.mjs",
"require": "./build/src/types/index.cjs"
},
"./enums": {
"types": "./build/src/enums/index.d.ts",
"import": "./build/src/enums/index.mjs",
"require": "./build/src/enums/index.cjs"
},
"./utils": {
"types": "./build/src/utils/index.d.ts",
"import": "./build/src/utils/index.mjs",
"require": "./build/src/utils/index.cjs"
}
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.4",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@vitest/coverage-v8": "^1.5.0",
"@vitest/ui": "^1.5.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.14.1",
"semantic-release": "^23.0.8",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.2.8",
"vitest": "^1.5.0"
},
"dependencies": {
"@babel/runtime": "^7.24.4",
"zod": "^3.22.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}