-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 984 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 984 Bytes
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
{
"name": "@flowcircuits/opencascade",
"author": "FLOW CIRCUITS LLC",
"repository": "https://github.com/flowcircuits/opencascade",
"version": "1.0.3",
"files": [
"dist"
],
"main": "dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"require": {
"default": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
}
},
"scripts": {
"build": "./build.sh"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.24.8",
"@babel/core": "7.25.2",
"@babel/plugin-transform-modules-commonjs": "7.24.8",
"babel-plugin-search-and-replace": "1.1.1",
"babel-plugin-transform-replace-expressions": "0.2.0"
},
"dependencies": {}
}