-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.94 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.94 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
{
"name": "@notask/unity-cli-tools",
"version": "2.0.1",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/esm/index.d.ts"
}
},
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/NoTaskStudios/unity-cli-tools.git"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc --project tsconfig.json",
"build:cjs": "tsc --project tsconfig.cjs.json && node scripts/write-cjs-package.cjs",
"test": "jest --passWithNoTests",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"semantic-release": "semantic-release"
},
"keywords": [
"unity",
"cli",
"tools",
"command line"
],
"author": "NoTask Team",
"license": "MIT",
"description": "A tools for Unity command line development.",
"dependencies": {
"execa": "^9.5.2",
"fs-extra": "^11.3.0",
"unity-changeset": "3.1.0"
},
"devDependencies": {
"@eslint/js": "9.24.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.14",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"eslint": "9.24.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"rimraf": "6.0.1",
"semantic-release": "^24.2.3",
"ts-jest": "^29.3.1",
"tsx": "4.19.3",
"typescript": "^5.8.3",
"typescript-eslint": "8.30.1"
}
}