-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 828 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 828 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
26
27
28
29
{
"private": true,
"name": "post-immediate",
"version": "0.0.2",
"description": "Post immediate",
"repository": {
"type": "git",
"url": "https://github.com/basic-examples/post-immediate.git"
},
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc && clean-empty-js 'dist/**/*.js' 'dist/**/*.d.ts' && clean-empty-directory dist && cpy README.md dist && package-json-minifier",
"publish": "npm run build && cd dist && npm publish",
"test": "tsx --test test"
},
"devDependencies": {
"@types/node": "^24.1.0",
"clean-empty-directory": "^2.0.0",
"clean-empty-js": "^2.0.2",
"cpy-cli": "^5.0.0",
"package.json-minifier": "^0.0.4",
"rimraf": "^6.0.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"dependencies": {
"removable-queue": "^0.0.0"
}
}