-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (42 loc) · 1.62 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
45
46
47
48
{
"name" : "oito",
"version" : "0.0.3",
"author" : "Pedro Sousa ( Vor @ SketchPunk Labs )",
"description" : "Math Library",
"keywords" : [],
"license" : "MIT",
"homepage" : "https://github.com/sketchpunklabs/oito#readme",
"repository" : { "type": "git", "url": "git+https://github.com/sketchpunklabs/oito.git" },
"bugs" : { "url": "https://github.com/sketchpunklabs/oito/issues" },
"files" : [ "dist" ],
"main" : "./dist/oito.cjs.js",
"module" : "./dist/oito.es.js",
"types" : "./dist/oito.d.ts",
"exports": {
".": {
"import" : "./dist/oito.es.js",
"require" : "./dist/oito.cjs.js"
}
},
"scripts" : {
"dev" : "vite",
"build" : "vite build",
"build:fn" : "vite build --config vite-fn.config.js",
"build:maths" : "vite build --config vite-maths.config.js",
"build:types" : "tsc --declaration --noEmit false --emitDeclarationOnly --strict false --outDir ./dist",
"build:site" : "vite build --mode site",
"pack" : "npm pack",
"preview-site" : "vite preview",
"lint" : "eslint . --ext .ts"
},
"dependencies": {
},
"devDependencies": {
"typescript" : "^4.6.2",
"vite" : "^2.8.6",
"three" : "^0.138.2",
"eslint" : "^8.10.0",
"@typescript-eslint/eslint-plugin" : "^5.13.0",
"@typescript-eslint/parser" : "^5.13.0"
}
}