-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.17 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.17 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
{
"name": "secure-input-monorepo",
"version": "0.0.0",
"private": true,
"description": "WASM-powered input obfuscation library for preventing client-side scraping",
"scripts": {
"build": "pnpm -r --filter @secure-input/wasm --filter @secure-input/core --filter @secure-input/react build",
"build:wasm": "pnpm --filter @secure-input/wasm build",
"build:core": "pnpm --filter @secure-input/core build",
"build:react": "pnpm --filter @secure-input/react build",
"dev": "pnpm -r --parallel dev",
"test": "pnpm -r test",
"clean": "pnpm -r exec rm -rf dist node_modules",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish"
},
"keywords": [
"security",
"input",
"obfuscation",
"wasm",
"encryption",
"anti-scraping"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^25.0.3",
"@vitejs/plugin-react": "^4.2.1",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vitest": "^1.1.3"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@10.16.0"
}