-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "sms-toolkit",
"version": "1.0.68",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"build": "yarn clean && tsc",
"start": "node dist/src/index.js",
"dev": "yarn build && cross-env NODE_ENV=development yarn start",
"gen": "yarn build && node dist/gen/index.js",
"watch": "cross-env NODE_ENV=development nodemon",
"format": "prettier --check --write src",
"lint": "eslint . --ext .ts",
"prepare": "yarn build && yarn gen",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"cross-env": "^7.0.3",
"eslint": "^8.33.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^1.3.2",
"dotenv": "^16.0.3",
"dts-dom": "^3.7.0"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/fourwadu/sms-toolkit.git"
}
}