-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.37 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
{
"name": "@incognia/api",
"author": "Incognia (https://incognia.com)",
"repository": "https://github.com/inloco/incognia-node",
"version": "6.0.0",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.es.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.es.js"
}
},
"engines": {
"node": ">=16"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prepare": "pnpm build",
"genVersion": "genversion --es6 src/version.ts"
},
"husky": {
"hooks": {
"pre-commit": "pnpm lint"
}
},
"prettier": {
"singleQuote": true,
"semi": false,
"jsxBracketSameLine": true,
"arrowParens": "avoid",
"trailingComma": "none"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/node": "^20.6.0",
"@types/qs": "^6.9.8",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"eslint": "^8.49.0",
"genversion": "^3.1.1",
"husky": "^8.0.3",
"nock": "^13.3.3",
"typescript": "^5.2.2",
"vite": "^4.5.3",
"vite-plugin-dts": "^3.5.3",
"vitest": "^0.34.4"
},
"dependencies": {
"axios": "^1.6.0",
"qs": "^6.11.2"
}
}