-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 800 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 800 Bytes
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
{
"name": "napgram-plugin-template",
"private": true,
"version": "0.1.0",
"description": "NapGram native plugin template (runs directly in NapGram runtime).",
"type": "module",
"packageManager": "pnpm@10.27.0",
"scripts": {
"clean": "rm -rf dist release .cache",
"build": "pnpm clean && tsc -p tsconfig.build.json",
"type-check": "tsc -p tsconfig.json --noEmit",
"validate": "node scripts/validate-plugin.mjs",
"pack:zip": "pnpm build && node scripts/pack.mjs zip",
"pack:tgz": "pnpm build && node scripts/pack.mjs tgz",
"marketplace:snippet": "node scripts/marketplace-snippet.mjs"
},
"dependencies": {
"@napgram/sdk": "^0.1.6",
"drizzle-orm": "^0.45.1"
},
"devDependencies": {
"@types/node": "^25.0.3",
"typescript": "^5.9.3"
}
}