-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.89 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.89 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
54
55
56
57
58
59
60
61
{
"name": "@auki/authentication",
"version": "0.1.0",
"description": "Auki Network authentication library for JavaScript/TypeScript (Browser & Node.js)",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./bindings": {
"types": "./dist/bindings/authentication.d.ts",
"import": "./dist/bindings/authentication.js"
}
},
"files": [
"dist"
],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "npm run typecheck && tsc && npm run copy-bindings",
"prepublishOnly": "npm run build",
"prepack": "npm run build",
"example:basic": "node --experimental-wasm-modules examples/basic.js",
"example:basic-appkey-appsecret": "node --experimental-wasm-modules examples/basic-appkey-appsecret.js",
"test:auto-auth": "node --experimental-wasm-modules examples/test_auto_auth.js",
"test:credential-clearing": "node --experimental-wasm-modules examples/test_credential_clearing.js",
"test:refresh-expiry": "node --experimental-wasm-modules examples/test_refresh_expired.js",
"copy-bindings": "mkdir -p dist/bindings && cp src/bindings/*.js src/bindings/*.wasm src/bindings/*.d.ts dist/bindings/ 2>/dev/null || true"
},
"keywords": [
"auki",
"authentication",
"wasm",
"webassembly",
"posemesh",
"dds"
],
"author": "Auki Labs",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"chalk": "^5.3.0",
"dotenv": "^16.0.0",
"esbuild": "^0.19.0",
"ink": "^4.4.1",
"ink-spinner": "^5.0.0",
"ink-text-input": "^5.0.1",
"node-fetch": "^3.3.2",
"react": "^18.2.0",
"typescript": "^5.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/aukilabs/experimental-modules"
}
}