-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.31 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": "twimo-v2",
"version": "0.4.0",
"repository": "github:yarnaimo/twimo-v2",
"license": "MIT",
"author": "yamaimo <yarnaimo@gmail.com>",
"type": "module",
"exports": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"dev": "yarn ts-node src/index.ts",
"lint": "eslint --ignore-path .gitignore '**/*.{js,jsx,ts,tsx}'",
"openapi:generate": "./openapi-generate.sh && node add-import-extension.js openapi",
"prepare": "yarn build",
"release": "yarn openapi:generate && np --no-cleanup",
"test": "NODE_ENV=test jest",
"ts-node": "node --loader ts-node/esm --experimental-repl-await",
"ts-node:debug": "yarn ts-node --inspect"
},
"dependencies": {
"axios": "^0.24.0",
"oauth-1.0a": "^2.2.6"
},
"devDependencies": {
"@arkweid/lefthook": "^0.7.7",
"@openapitools/openapi-generator-cli": "^2.4.18",
"@sindresorhus/tsconfig": "^2.0.0",
"@types/jest": "^27.0.3",
"@types/prettier": "^2.4.2",
"@yarnaimo/eslint-config": "^0.4.4",
"enhanced-resolve": "^5.8.3",
"jest": "^27.4.3",
"np": "^7.6.0",
"prettier": "^2.5.0",
"sort-package-json": "^1.53.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"tsd": "^0.19.0",
"type-fest": "^2.8.0",
"typescript": "^4.5.2"
}
}