-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.36 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
{
"name": "@nousantx/plugify",
"version": "1.1.0",
"description": "A quick way to add plugin system to your code.",
"author": "NOuSantx <github.com/nousantx | nousantx@gmail.com>",
"license": "MIT",
"keywords": [
"plugin",
"plugin-system",
"architecture",
"extensible",
"hooks",
"middleware",
"typescript",
"javascript",
"modular",
"framework"
],
"homepage": "https://github.com/nousantx/plugify#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nousantx/plugify.git"
},
"bugs": {
"url": "https://github.com/nousantx/plugify/issues"
},
"files": [
"dist/*",
"package.json",
"README.md",
"LICENSE"
],
"types": "./dist/index.d.mts",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"browser": "./dist/index.iife.js",
"exports": {
".": {
"types": "./dist/index.d.mts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"build:prod": "pnpm type:check && pnpm build --minify",
"type:check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"tsdown": "^0.16.4",
"typescript": "^5.7.3",
"vitest": "^3.2.1"
},
"packageManager": "pnpm@10.11.0"
}