-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
43 lines (43 loc) · 974 Bytes
/
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
{
"name": "@turnkey/encoding",
"version": "0.4.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.mjs"
}
},
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
"description": "Encoding utility functions",
"author": {
"name": "Turnkey",
"url": "https://turnkey.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/tkhq/sdk.git",
"directory": "packages/encoding"
},
"files": [
"dist/",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublishOnly": "pnpm -w run clean-all && pnpm -w run build-all",
"build": "rollup -c",
"clean": "rimraf ./dist ./.cache",
"test": "jest",
"typecheck": "tsc -p tsconfig.typecheck.json"
},
"engines": {
"node": ">=18.0.0"
}
}