forked from react-figma/figma-api-stub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.4 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
{
"name": "figma-api-stub",
"version": "0.0.56",
"description": "Figma API stub",
"main": "./dist/index.js",
"scripts": {
"tsc": "tsc -p tsconfig.build.json",
"prettify": "prettier \"src/**/*.{js,jsx,ts,tsx}\" --ignore-path ./.prettierignore --write && git add . && git status",
"build": "npm run build:clean && npm run build:lib",
"build:clean": "rimraf dist",
"build:lib": "cross-env BABEL_ENV=production tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build",
"test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js"
},
"jest": {
"preset": "ts-jest/presets/default-esm"
},
"pre-commit": [
"prettify",
"tsc",
"test"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/react-figma/figma-api-stub.git"
},
"keywords": [
"figma",
"figma-plugins"
],
"author": "Ilya Lesik <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-figma/figma-api-stub/issues"
},
"homepage": "https://github.com/react-figma/figma-api-stub#readme",
"devDependencies": {
"@figma/plugin-typings": "~1.71.1",
"@types/jest": "^29.5.3",
"cross-env": "^6.0.3",
"jest": "^29.6.1",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.0.0"
},
"dependencies": {
"nanoid": "^4.0.2"
}
}