forked from Linushellberg/managed-component-tiktok
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
29 lines (29 loc) · 923 Bytes
/
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
{
"name": "@managed-components/tiktok",
"version": "1.0.5",
"description": "",
"main": "dist/index.js",
"scripts": {
"lint": "eslint --ext .ts,.js, src",
"lint:fix": "eslint --ext .ts,.js, src --fix",
"bundle": "node esbuild.js",
"build": "npm run lint && npm run typecheck && npm run bundle",
"typecheck": "tsc --project tsconfig.build.json --noEmit",
"test": "vitest run --globals",
"test:dev": "vitest --globals",
"release": "npm run build && npm version patch && npm publish"
},
"devDependencies": {
"@managed-components/types": "^1.3.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"all-contributors-cli": "^6.20.0",
"esbuild": "^0.14.42",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "2.7.1",
"ts-node": "^10.8.0",
"typescript": "^4.7.2",
"vitest": "^1.6.0"
}
}