This repository has been archived by the owner on Nov 5, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
49 lines (49 loc) · 1.53 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
{
"name": "engine-js",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": [
"packages/**",
"plugins/**",
"examples/**"
],
"scripts": {
"prepare": "yarn prepare:git",
"prepare:git": "husky install || echo \"skip husky\"",
"build": "turbo run build",
"types": "turbo run types",
"test": "turbo run test lint",
"test:strict": "turbo run test lint:strict",
"lint": "turbo run lint",
"lint:fix": "turbo run lint -- --fix",
"lint:strict": "turbo run lint:strict",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"release:version": "changeset version",
"release:build": "turbo run build types",
"release:publish": "changeset publish",
"release:github-publish": "YARN_REGISTRY=https://npm.pkg.github.com yarn release:publish",
"release:push": "git push --follow-tags",
"release:status": "changeset status",
"release": "yarn release:build && yarn release:version && yarn release:publish && yarn release:github-publish && yarn release:push"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@neuledge/eslint-config": "^1.2.0",
"@neuledge/jest-ts-preset": "^1.0.1",
"@neuledge/tsconfig": "^3.0.0",
"@swc/core": "^1.3.95",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.9",
"eslint": "^8.52.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.8",
"tsup": "^7.2.0",
"turbo": "^1.10.16",
"typescript": "^5.2.2"
}
}