generated from songkeys/node-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.34 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
49
50
51
52
53
54
55
{
"name": "uni-media",
"version": "0.1.9",
"description": "Easily embed any types of media (images, videos, audios, pdfs, 3d-models...) in your web app",
"keywords": [
"node",
"library",
"template"
],
"bugs": {
"url": "https://github.com/Songkeys/uni-media/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Songkeys/uni-media.git"
},
"license": "MIT",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run build:fast -- --dts-resolve",
"build:dev": "npm run build:fast -- --watch",
"build:fast": "tsup",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:serve": "vitepress serve docs",
"prepublishOnly": "npm run build",
"test": "vitest run"
},
"devDependencies": {
"@google/model-viewer": "^1.12.0",
"@types/mime": "^2.0.3",
"file-type": "^17.1.2",
"lit": "^2.2.7",
"mime": "^3.0.0",
"node-stdlib-browser": "^1.2.0",
"prettier": "^2.7.1",
"ts-lit-plugin": "^1.2.1",
"tsup": "^6.1.3",
"typescript": "^4.7.4",
"vitepress": "1.0.0-alpha.2",
"vitest": "^0.17.1"
},
"publishConfig": {
"access": "public"
}
}