-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.3 KB
/
package.json
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
{
"name": "@telegram-apps/analytics",
"version": "1.3.11",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "wasm-pack build ./src/wasm/human-proof --target web && vite build --mode script && vite build --mode package",
"watch": "vite --watch",
"serve": "http-server -p 8080 ./dist",
"typecheck": "tsc --noEmit"
},
"files": [
"lib",
"dist"
],
"module": "./lib/cjs/index.cjs",
"types": "./lib/types/index.d.ts",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"require": "./lib/cjs/index.cjs",
"import": "./lib/es/index.js",
"default": "./lib/cjs/index.cjs"
}
},
"author": "Cameron Nokes",
"license": "MIT",
"devDependencies": {
"@twa-dev/types": "^7.0.0",
"@types/es6-promise": "^3.3.0",
"javascript-obfuscator": "^4.1.1",
"terser": "^5.31.0",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vite-plugin-dts": "^4.2.1",
"vite-plugin-javascript-obfuscator": "^3.1.0",
"vite-plugin-static-copy": "^1.0.6",
"vite-tsconfig-paths": "^5.0.1",
"wasm-pack": "^0.13.1"
},
"dependencies": {
"@telegram-apps/sdk": "^1.1.0",
"@tonconnect/ui": "2.0.5",
"http-server": "14.1.1"
},
"resolutions": {
"@types/node": "18.11.9"
},
"directories": {
"test": "tests"
}
}