-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.78 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
{
"name": "teamcowboy.js",
"version": "0.0.0-semantically-released",
"description": "A TypeScript first TeamCowboy API client",
"type": "module",
"types": "dist/index.d.ts",
"exports": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "run-p 'build:*'",
"build:esm": "tsc -p ./tsconfig.package.json",
"build:types": "tsc -p ./tsconfig.package.json -d",
"clean": "rimraf dist",
"lint": "run-s 'lint:*'",
"lint:es": "eslint src --max-warnings=0",
"lint:style": "prettier 'src/**/*.(ts|js)' --check",
"prepack": "run-s -n build",
"test": "vitest"
},
"repository": {
"url": "https://github.com/smoak/teamcowboy.js.git"
},
"keywords": [
"teamcowboy",
"api",
"request"
],
"author": "Sasha Moak (https://github.com/smoak)",
"license": "MIT",
"dependencies": {
"axios": "^1.7.7",
"axios-logger": "^2.8.1",
"crypto-js": "^4.2.0",
"qs": "^6.13.0",
"universal-user-agent": "^6.0.0"
},
"devDependencies": {
"@semantic-release/exec": "^6.0.3",
"@semantic-release/github": "^10.3.3",
"@semantic-release/npm": "^12.0.1",
"@types/crypto-js": "^4.2.2",
"@types/node": "^20.14.8",
"@types/qs": "^6.9.16",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^8.5.0",
"msw": "^2.4.6",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"semantic-release": "^24.1.1",
"typescript": "^5.2.2",
"vitest": "^2.1.1"
},
"engines": {
"node": "^18.19.0 || >= 20.5.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest",
"provenance": true
},
"volta": {
"node": "20.17.0"
}
}