-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.05 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.05 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
65
66
{
"name": "@fingerprintjs/library-template-typescript",
"version": "0.0.1",
"description": "Typescript library template project",
"author": "FingerprintJS, Inc (https://fingerprint.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fingerprintjs/library-template-typescript.git"
},
"scripts": {
"prepare": "husky",
"build": "rimraf dist && rollup -c rollup.config.js --bundleConfigAsCjs",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore --max-warnings 0 .",
"lint:fix": "yarn lint --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"test:dts": "tsc --noEmit --isolatedModules dist/template-ts.d.ts",
"docs": "typedoc src/index.ts --out docs"
},
"main": "dist/template-ts.cjs.js",
"module": "dist/template-ts.esm.js",
"types": "dist/template-ts.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"lint-staged": {
"*.{js,ts}": "pnpm run lint:fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@fingerprintjs/commit-lint-dx-team": "^0.1.0",
"@fingerprintjs/conventional-changelog-dx-team": "^0.1.0",
"@fingerprintjs/eslint-config-dx-team": "^0.1.0",
"@fingerprintjs/prettier-config-dx-team": "^0.2.0",
"@fingerprintjs/tsconfig-dx-team": "^0.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^29.5.14",
"@types/node": "^20.11.27",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.5.0",
"rimraf": "^5.0.5",
"rollup": "^4.38.0",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-license": "^3.6.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^29.3.0",
"typedoc": "^0.28.1",
"typescript": "^5.8.2"
}
}