-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.79 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@seqsense/pcdeditor",
"version": "0.0.0",
"description": "PCD editor",
"main": "pcdeditor.js",
"types": {
".": "pcdeditor.d.ts",
"./ReactPCDEditor": "./ReactPCDEditor/index.d.ts"
},
"exports": {
".": {
"import": "./pcdeditor.esm.js",
"require": "./pcdeditor.js",
"node": "./pcdeditor.esm.js",
"default": "./pcdeditor.esm.js"
},
"./ReactPCDEditor": "./ReactPCDEditor/index.js"
},
"files": [
"pcdeditor.js",
"pcdeditor.esm.js",
"pcdeditor.d.ts",
"wasm_exec.js",
"pcdeditor.wasm",
"ReactPCDEditor/index.js",
"ReactPCDEditor/index.d.ts"
],
"scripts": {
"build": "make pcdeditor.esm.js ReactPCDEditor/index.js",
"fmt": "prettier --write pcdeditor.js pcdeditor.d.ts ReactPCDEditor/index.tsx",
"lint": "eslint",
"typecheck": "tsc --noEmit --allowJs --jsx react --esModuleInterop pcdeditor.js ReactPCDEditor/index.tsx",
"tsc": "tsc --declaration --jsx react --esModuleInterop ReactPCDEditor/index.tsx"
},
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git://github.com/seqsense/pcdeditor.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/seqsense/pcdeditor/issues"
},
"homepage": "https://github.com/seqsense/pcdeditor#readme",
"devDependencies": {
"@eslint/js": "10.0.1",
"eslint": "10.5.0",
"eslint-plugin-react": "7.37.5",
"globals": "17.6.0",
"prettier": "3.8.4",
"react": "19.2.7",
"typescript": "5.9.3",
"typescript-eslint": "8.61.1"
},
"overrides": {
"braces@<3.0.3": ">=3.0.3",
"micromatch@<4.0.8": ">=4.0.8",
"brace-expansion@>=1.0.0 <=1.1.11": ">=1.1.12",
"brace-expansion@>=2.0.0 <=2.0.1": ">=2.0.2"
},
"packageManager": "pnpm@10.34.4"
}