-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.04 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
{
"name": "sentence-cipher",
"type": "module",
"sideEffects": false,
"version": "2.1.0",
"description": "A Go/Node.js library that encodes data into natural-looking English sentences for steganography.",
"repository": {
"type": "git",
"url": "git+https://github.com/kittizz/sentence-cipher.git"
},
"bugs": {
"url": "https://github.com/kittizz/sentence-cipher/issues"
},
"exports": {
".": {
"types": "./packages/exports/dist/node/index.d.ts",
"import": "./packages/exports/dist/node/index.js"
},
"./package.json": "./package.json"
},
"files": [
"packages/exports/dist",
"package.json"
],
"scripts": {
"dev": "pnpm --filter playground dev",
"build": "pnpm --filter exports build && pnpm --filter playground build",
"update": "pnpm --filter playground update sentence-cipher",
"release": "pnpm bumpp --no-push && pnpm publish --no-git-checks --access public && git push"
},
"dependencies": {
"bumpp": "^10.3.2"
},
"devDependencies": {
"@types/node": "^24.10.4"
}
}