-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.99 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.99 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
{
"name": "@cond8-ai/core",
"version": "0.0.4",
"description": "Core utilities and functions for the cond8 ecosystem.",
"keywords": [
"cond8",
"core",
"library"
],
"repository": {
"type": "git",
"url": "https://github.com/cond8/core.git"
},
"bugs": {
"url": "https://github.com/cond8/core/issues"
},
"homepage": "https://github.com/cond8/core#readme",
"license": "Apache-2.0",
"author": "Vince Liem (https://github.com/veighnsche)",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -b -v tsconfig.build.json",
"check-types": "tsc --noEmit",
"dev": "tsc -b -w tsconfig.build.json",
"format": "prettier --write .",
"lint": "eslint . --fix",
"test": "vitest",
"test:coverage": "vitest --coverage",
"publish": "pnpm run build && npx np"
},
"dependencies": {
"dedent": "^1.5.3",
"immer": "^10.1.1",
"jest-diff": "^29.7.0",
"nanoid": "^5.1.5"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@types/node": "^22.14.1",
"@vitest/coverage-v8": "^3.1.1",
"c8": "^10.1.3",
"eslint": "^9.25.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-turbo": "^2.5.0",
"globals": "^16.0.0",
"jsonc-eslint-parser": "^2.4.0",
"np": "^10.2.0",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.10",
"tslib": "^2.8.1",
"turbo": "^2.5.0",
"typescript": "5.8.3",
"typescript-eslint": "^8.30.1",
"vitest": "^3.1.1"
},
"packageManager": "pnpm@10.7.1+sha512.2d92c86b7928dc8284f53494fb4201f983da65f0fb4f0d40baafa5cf628fa31dae3e5968f12466f17df7e97310e30f343a648baea1b9b350685dafafffdf5808",
"$path": "package.json"
}