forked from proofcarryingdata/zupass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.23 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": "@pcd/pcd-types",
"version": "0.9.0",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/types/src/index.d.ts",
"exports": {
".": {
"types": "./dist/types/src/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"./README.md",
"./LICENSE"
],
"scripts": {
"lint": "eslint \"**/*.ts{,x}\"",
"build": "concurrently \"yarn build:ts\" \"yarn build:types\"",
"build:ts": "tsup src/index.ts --format cjs,esm --clean",
"build:types": "rm -rf dist/types && tsc --emitDeclarationOnly --outDir dist/types/src",
"dev": "concurrently \"yarn dev:ts\" \"yarn dev:types\"",
"dev:ts": "tsup src/index.ts --format cjs,esm --watch",
"dev:types": "tsc --emitDeclarationOnly --outDir dist/types --watch",
"typecheck": "yarn tsc --noEmit",
"prepublishOnly": "yarn build",
"clean": "rm -rf dist node_modules"
},
"devDependencies": {
"@pcd/eslint-config-custom": "*",
"@pcd/tsconfig": "*",
"@types/react": "^18.0.22",
"eslint": "^7.32.0",
"tsup": "^6.7.0",
"typescript": "^4.9.5"
},
"publishConfig": {
"access": "public"
},
"dependencies": {}
}