-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.58 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
{
"name": "rapiq",
"version": "0.9.0",
"description": "A tiny library which provides utility types/functions for request and response query handling.",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/"
],
"scripts": {
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "rimraf dist && npm run build:types && npm run build:js",
"commit": "npx git-cz",
"test": "cross-env NODE_ENV=test jest --config ./test/jest.config.js",
"test:coverage": "cross-env NODE_ENV=test jest --config ./test/jest.config.js --coverage",
"lint": "eslint --ext .js,.ts ./src",
"lint:fix": "npm run lint -- --fix",
"docs:dev": "vitepress dev docs --temp .temp",
"docs:build": "vitepress build docs --temp .temp",
"docs:help": "vitepress --help",
"prepare": "npx husky install",
"prepublishOnly": "npm run build"
},
"author": {
"name": "Peter Placzek",
"email": "contact@tada5hi.net",
"url": "https://github.com/tada5hi"
},
"license": "MIT",
"keywords": [
"query",
"json",
"json-api",
"api",
"rest",
"api-utils",
"include",
"pagination",
"sort",
"fields",
"filter",
"relations",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Tada5hi/rapiq.git"
},
"bugs": {
"url": "https://github.com/Tada5hi/rapiq/issues"
},
"homepage": "https://github.com/Tada5hi/rapiq#readme",
"dependencies": {
"smob": "^1.4.1"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@swc/core": "^1.4.8",
"@swc/jest": "^0.2.36",
"@tada5hi/commitlint-config": "^1.1.7",
"@tada5hi/eslint-config-typescript": "^1.2.9",
"@tada5hi/semantic-release": "^0.3.1",
"@tada5hi/tsconfig": "^0.5.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.27",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"rollup": "^4.13.0",
"semantic-release": "^22.0.12",
"typescript": "^5.4.2",
"vitepress": "^1.0.1"
}
}