@splinetool/loader 0.9.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@splinetool/loader",
3
+ "version": "0.9.19",
4
+ "main": "build/SplineLoader.js",
5
+ "types": "./build/SplineLoader.d.ts",
6
+ "files": [
7
+ "build"
8
+ ],
9
+ "scripts": {
10
+ "build": "cross-env NODE_ENV=production node --experimental-json-modules ./esbuild.mjs && yarn build-types",
11
+ "build-types": "tsc --skipLibCheck --isolatedModules false --noEmit false --emitDeclarationOnly --declaration --outFile build/SplineLoader.d.ts",
12
+ "lint": "eslint src/ --max-warnings=0 --cache",
13
+ "format": "prettier src/ --write",
14
+ "typecheck": "tsc",
15
+ "analyze": "cross-env GENERATE_SOURCEMAP=true yarn build && source-map-explorer 'build/*.js' --no-border-checks"
16
+ },
17
+ "peerDependencies": {
18
+ "three": ">=0.133.0"
19
+ },
20
+ "devDependencies": {
21
+ "browserslist": "^4.16.7",
22
+ "browserslist-to-esbuild": "^1.0.1",
23
+ "cross-env": "^7.0.3",
24
+ "eslint": "^7.32.0",
25
+ "jest": "26.6.0",
26
+ "lodash-es": "^4.17.21",
27
+ "prettier": "^2.3.2",
28
+ "raw-loader": "^4.0.2",
29
+ "source-map-explorer": "^2.5.2",
30
+ "spe": "0.0.0",
31
+ "three": "0.138.3",
32
+ "typescript": "^4.1.3"
33
+ },
34
+ "browserslist": {
35
+ "production": [
36
+ ">0.2%",
37
+ "not dead",
38
+ "not op_mini all"
39
+ ],
40
+ "development": [
41
+ "last 1 chrome version",
42
+ "last 1 firefox version",
43
+ "last 1 safari version"
44
+ ]
45
+ }
46
+ }