-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.09 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
{
"name": "@spuxx/js-utils",
"version": "1.0.0",
"description": "A package containing various utilities for JavaScript applications.",
"license": "MIT",
"author": {
"name": "spuxx",
"email": "hi@spuxx.dev",
"url": "https://spuxx.dev"
},
"keywords": [
"spuxx"
],
"repository": {
"type": "git",
"url": "https://github.com/spuxx1701/jslibs"
},
"homepage": "https://github.com/spuxx1701/jslibs/blob/main/packages/js-utils/README.md",
"bugs": {
"url": "https://github.com/spuxx1701/jslibs/issues"
},
"type": "module",
"main": "dist/main.js",
"module": "dist/main.js",
"types": "dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"types": "tsc --noEmit"
},
"peerDependencies": {
"@modyfi/vite-plugin-yaml": "^1.1.0"
},
"peerDependenciesMeta": {
"@modyfi/vite-plugin-yaml": {
"optional": true
}
}
}