-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.26 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.26 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
67
68
69
70
71
{
"author": {
"name": "Robert Lindley"
},
"dependencies": {
"@automapper/core": "^8.8.1",
"@automapper/pojos": "^8.8.1",
"commander": "^14.0.3"
},
"bin": {
"figma-connecter": "./dist/figma-connecter.cjs"
},
"description": "Figma Connecter management tool",
"devDependencies": {
"@coderrob/eslint-plugin-zero-tolerance": "^1.1.7",
"@eslint/js": "^9.39.3",
"@figma/plugin-typings": "^1.123.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/jest": "^29.5.14",
"@types/node": "25.3.0",
"eslint": "^9.39.3",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.7.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-util": "^29.7.0",
"jscpd": "^4.0.8",
"rimraf": "^6.1.3",
"rollup": "^4.59.0",
"rollup-plugin-dts": "^6.3.0",
"ts-jest": "^29.4.6",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vite-plugin-singlefile": "^2.3.0"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=8.0.0"
},
"files": [
"dist"
],
"license": "Apache-2.0",
"main": "./dist/index.cjs",
"name": "@coderrob/figma-connecter",
"scripts": {
"build": "npm run clean && rollup -c rollup.config.mjs",
"clean": "npm run clean:dist",
"clean:dist": "rimraf ./dist",
"duplication": "jscpd --config .jscpd.json",
"lint": "eslint \"./src/**/*.{ts,tsx}\" \"./bin/**/*.ts\" \"./__tests__/**/*.ts\"",
"lint:fix": "eslint \"./src/**/*.{ts,tsx}\" \"./bin/**/*.ts\" \"./__tests__/**/*.ts\" --fix",
"quality:gate": "npm run lint && npm run tsc && npm test && npm run duplication && npm run repo:hygiene && npm run build",
"repo:hygiene": "node ./scripts/validate-repo-hygiene.mjs",
"test": "npm run test:unit",
"test:coverage": "jest --config jest.config.js --coverage --runInBand",
"test:unit": "jest --config jest.config.js --runInBand",
"tsc": "tsc --noEmit"
},
"type": "commonjs",
"types": "./dist/index.d.ts",
"version": "1.0.0"
}