-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 2.89 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@xiaoiver/renderer",
"version": "0.0.0",
"description": "",
"exports": {
"types": "./es/index.d.ts",
"import": "./es/index.js",
"default": "./lib/index.js"
},
"main": "lib/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"unpkg": "dist/index.umd.min.js",
"files": [
"lib",
"es",
"dist"
],
"scripts": {
"dev": "vite dev",
"deploy": "vite build",
"preview": "vite preview",
"build": "rollup -c",
"clean": "rimraf dist",
"eslint": "eslint --ext .ts,.js ./src --quiet",
"eslint-fix": "eslint --fix --ext .ts,.js ./src",
"lint": "npm run eslint",
"lint-staged": "lint-staged",
"prepare": "husky install",
"prepublishOnly": "npm run build && cp -r rust/pkg dist",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish",
"test": "jest",
"test:e2e": "npx playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xiaoiver/renderer.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/xiaoiver/renderer/issues"
},
"homepage": "https://github.com/xiaoiver/renderer#readme",
"dependencies": {
"@antv/g-device-api": "^1.6.1",
"@lastolivegames/becsy": "^0.15.9",
"@loaders.gl/core": "^4.0.4",
"@loaders.gl/ply": "^4.0.4",
"gl-matrix": "^3.4.3",
"hammerjs": "^2.0.8",
"lodash-es": "^4.17.21",
"tslib": "^2.6.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^8.3.6",
"@commitlint/config-angular": "^9.1.2",
"@playwright/test": "^1.40.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/hammerjs": "^2.0.45",
"@types/jest": "^26.0.24",
"@types/lodash-es": "^4.17.12",
"@types/node": "^16.18.68",
"@types/offscreencanvas": "^2019.7.3",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"case-police": "^0.5.14",
"eslint": "^7.32.0",
"eslint-plugin-jest": "24.3.6",
"husky": "^7.0.4",
"jest": "^29.7.0",
"jest-matcher-deep-close-to": "3.0.2",
"lil-gui": "^0.16.1",
"lint-staged": "^10.5.4",
"markdownlint-cli": "^0.32.2",
"prettier": "^2.8.8",
"rimraf": "^4.4.1",
"rollup": "^3.29.4",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-visualizer": "^5.11.0",
"stats.js": "^0.17.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3",
"vite": "^4.5.1"
},
"lint-staged": {
"*.{md,json}": [
"prettier --write"
],
"*.md": [
"markdownlint --fix",
"case-police --fix",
"prettier --write"
],
"*.{js,jsx,tsx,ts,vue}": [
"eslint --fix"
]
},
"publishConfig": {
"access": "public"
}
}