-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 4.1 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"private": false,
"name": "theseus-js",
"version": "15.0.2",
"type": "module",
"description": "Functionality to create and modify data fluently and narratively",
"author": "Jake Lauer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jakelauer/theseus-js.git"
},
"bugs": {
"url": "https://github.com/jakelauer/theseus-js/issues"
},
"homepage": "https://github.com/jakelauer/theseus-js",
"scripts": {
"prepare": "husky install",
"reinstall": "npx npkill && pnpm install",
"// ==== TESTING ==== //": " ",
"commit": "cz",
"lint": "git add . && pnpm lint-staged",
"lint-fix": "eslint ./ --fix --resolve-plugins-relative-to=./",
"test:pkg": "pnpm -r run test",
"test:pkg:sandbox": "pnpm -r run test",
"test:watch": "vitest watch",
"test": "vitest run",
"// ==== BUILD ==== //": "",
"build:base": "tsup && resolve-tspaths",
"build:ci": "pnpm build:base",
"build:ci:pkg": "pnpm build:pkg",
"build": "pnpm lint-fix && pnpm build:pkg && pnpm build:base",
"build:pkg": "pnpm -r run build",
"live": "tsc --watch --project ./tsconfig.json && resolve-tspaths",
"clean": "rm -rf ./dist",
"// ==== EXAMPLES ==== //": "",
"install:ex": "pnpm --prefix ./.examples/tic-tac-toe install",
"ex:ttt": "pnpm --prefix ./.examples/tic-tac-toe start",
"// === HELPERS === //": "",
"package": "sh -c 'pnpm --prefix ./packages/$0 run $1'",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@ungap/structured-clone": "^1.2.0",
"deep-extend": "^0.6.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@anolilab/semantic-release-pnpm": "^1.1.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/cz-commitlint": "^19.2.0",
"@commitlint/prompt": "^19.3.1",
"@qiwi/multi-semantic-release": "^7.1.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.1.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^13.0.0",
"@stylistic/eslint-plugin": "^2.2.2",
"@types/deep-equal": "^1.0.4",
"@types/deep-extend": "^0.6.2",
"@types/deep-freeze-strict": "^1.1.2",
"@types/promise.allsettled": "^1.0.6",
"@types/ungap__structured-clone": "^1.2.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@vitest/coverage-v8": "^1.0.1",
"commitizen": "^4.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-require-extensions": "0.1.3",
"eslint-plugin-theseus": "workspace:~",
"eslint-plugin-unused-imports": "^3.1.0",
"glob": "^10.4.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"resolve-tspaths": "^0.8.18",
"semantic-release": "^23.1.1",
"semantic-release-monorepo": "^8.0.2",
"theseus-commitlint-config": "workspace:~",
"theseus-gpt-zip": "workspace:~",
"theseus-logger": "workspace:~",
"theseus-sandbox": "workspace:~",
"ts-node": "10.9.2",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.1.0",
"typescript": "^5.4.5",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.0.1"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix --resolve-plugins-relative-to=./"
]
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"directories": {
"dist": "dist"
},
"engines": {
"node": ">=16.x"
},
"config": {
"commitizen": {
"path": "./node_modules/@commitlint/cz-commitlint/index.cjs"
}
}
}