-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (64 loc) · 1.98 KB
/
package.json
File metadata and controls
65 lines (64 loc) · 1.98 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
62
63
64
{
"name": "@imtbl/attribution",
"description": "Minimal marketing attribution package for web - replacement for AppsFlyer/Adjust",
"version": "0.0.0",
"author": "Immutable",
"bugs": "https://github.com/immutable/ts-immutable-sdk/issues",
"dependencies": {},
"devDependencies": {
"@swc/core": "^1.3.36",
"@swc/jest": "^0.2.37",
"@types/jest": "^29.4.3",
"@types/node": "^18.14.2",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.40.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"tsup": "8.3.0",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=20.11.0"
},
"exports": {
"development": {
"types": "./src/index.ts",
"browser": "./dist/browser/index.js",
"require": "./dist/node/index.cjs",
"default": "./dist/node/index.js"
},
"default": {
"types": "./dist/types/index.d.ts",
"browser": "./dist/browser/index.js",
"require": "./dist/node/index.cjs",
"default": "./dist/node/index.js"
}
},
"files": [
"dist"
],
"homepage": "https://github.com/immutable/ts-immutable-sdk#readme",
"license": "Apache-2.0",
"main": "dist/node/index.cjs",
"module": "dist/node/index.js",
"browser": "dist/browser/index.js",
"publishConfig": {
"access": "public"
},
"repository": "immutable/ts-immutable-sdk.git",
"scripts": {
"build": "pnpm transpile && pnpm typegen",
"transpile": "tsup src/index.ts --config ../../tsup.config.js",
"typegen": "tsc --customConditions default --emitDeclarationOnly --outDir dist/types",
"pack:root": "pnpm pack --pack-destination $(dirname $(pnpm root -w))",
"lint": "eslint ./src --ext .ts,.jsx,.tsx --max-warnings=0",
"test": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc --customConditions default --noEmit --jsx preserve"
},
"type": "module",
"types": "./dist/types/index.d.ts"
}