-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "sublinks-js",
"version": "0.1.2",
"description": "A JavaScript library for interacting with the sublinks API.",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"package.json"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"author": "Ategon",
"license": "MIT",
"scripts": {
"start": "npm run build && node ./dist/index.js",
"build": "tsup",
"prepare": "husky",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix && git add \"./**/*.ts\"",
"format": "prettier --check \"./**/*.ts\"",
"format:fix": "prettier --write \"./**/*.ts\" && git add \"./**/*.ts\"",
"docs": "typedoc"
},
"type": "module",
"dependencies": {
"chalk": "^5.3.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.10",
"prettier": "^3.2.5",
"tsup": "^8.0.1",
"typedoc": "^0.25.7",
"typescript": "^5.3.3"
}
}