-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.62 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.62 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
{
"name": "@hackmd/api",
"version": "2.5.0",
"description": "HackMD Node.js API Client",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./dist": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./dist/*": "./dist/*"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && rollup -c",
"watch": "npm run clean && rollup -c -w",
"prepublishOnly": "npm run build",
"lint": "eslint src --fix --ext .ts",
"test": "jest"
},
"keywords": [
"HackMD",
"API Client"
],
"files": [
"dist/*",
"README.md",
"LICENSE"
],
"author": {
"name": "HackMD",
"email": "support@hackmd.io",
"url": "https://hackmd.io"
},
"license": "MIT",
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@types/eslint": "^8.21.0",
"@types/jest": "^29.4.0",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"dotenv": "^16.0.3",
"eslint": "^8.57.1",
"jest": "^29.4.2",
"msw": "^2.7.3",
"rimraf": "^4.1.2",
"rollup": "^4.41.1",
"ts-jest": "^29.0.5",
"ts-node": "^8.8.2",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^1.8.4",
"tslib": "^1.14.1"
}
}