-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "@plasmohq/qtt",
"version": "1.8.0",
"description": "",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "run-p dev:*",
"dev:compile": "tsup src/index.ts --watch --sourcemap",
"dev:test": "jest --watch",
"build": "tsup src/index.ts --dts-resolve --format esm --minify --clean",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"prepublishOnly": "run-s build test"
},
"author": "Plasmo Corp. <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/PlasmoHQ/qtt.git"
},
"license": "MIT",
"keywords": [],
"devDependencies": {
"@jest/globals": "29.3.1",
"@jest/types": "29.3.1",
"@plasmohq/prettier-plugin-sort-imports": "workspace:*",
"@plasmohq/rps": "workspace:*",
"@types/node": "18.11.9",
"cross-env": "7.0.3",
"jest": "29.3.1",
"prettier": "2.7.1",
"ts-jest": "29.0.3",
"tsup": "6.5.0",
"typescript": "4.9.3"
}
}