-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.37 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.37 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
{
"name": "cas-typescript-sdk",
"version": "1.0.63",
"description": "",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.js"
}
},
"scripts": {
"test": "npm run rust:test && npm run build && npm run node:test",
"node:test": "npx playwright test",
"rust:test": "cargo test --release",
"build:ts": "rimraf lib && tsc",
"build:rust": "napi build --release --platform",
"build": "npm run build:rust && npm run build:ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cryptographic-API-Services/cas-typescript-sdk"
},
"keywords": [],
"author": "Mike Mulchrone <mikemulchrone987@gmail.com>",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/Cryptographic-API-Services/cas-typescript-sdk/issues"
},
"homepage": "https://github.com/Cryptographic-API-Services/cas-typescript-sdk#readme",
"files": [
"lib",
"index.js",
"index.d.ts",
"*.node",
"README.md"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@napi-rs/cli": "^3.4.1",
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@types/node": "^25.5.0"
}
}