1 | {
|
---|
2 | "name": "@swagger-api/apidom-ns-openapi-3-1",
|
---|
3 | "version": "0.95.0",
|
---|
4 | "description": "OpenAPI 3.1.x namespace for ApiDOM.",
|
---|
5 | "publishConfig": {
|
---|
6 | "access": "public",
|
---|
7 | "registry": "https://registry.npmjs.org"
|
---|
8 | },
|
---|
9 | "type": "module",
|
---|
10 | "sideEffects": [
|
---|
11 | "./es/refractor/registration.mjs",
|
---|
12 | "./cjs/refractor/registration.cjs"
|
---|
13 | ],
|
---|
14 | "unpkg": "./dist/apidom-ns-openapi-3-1.browser.min.js",
|
---|
15 | "main": "./cjs/index.cjs",
|
---|
16 | "exports": {
|
---|
17 | "types": "./types/dist.d.ts",
|
---|
18 | "import": "./es/index.mjs",
|
---|
19 | "require": "./cjs/index.cjs"
|
---|
20 | },
|
---|
21 | "types": "./types/dist.d.ts",
|
---|
22 | "scripts": {
|
---|
23 | "build": "npm run clean && run-p --max-parallel ${CPU_CORES:-2} typescript:declaration build:es build:cjs build:umd:browser",
|
---|
24 | "build:es": "cross-env BABEL_ENV=es babel src --out-dir es --extensions '.ts' --out-file-extension '.mjs' --root-mode 'upward'",
|
---|
25 | "build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir cjs --extensions '.ts' --out-file-extension '.cjs' --root-mode 'upward'",
|
---|
26 | "build:umd:browser": "cross-env BABEL_ENV=browser webpack --config config/webpack/browser.config.js --progress",
|
---|
27 | "lint": "eslint ./",
|
---|
28 | "lint:fix": "eslint ./ --fix",
|
---|
29 | "clean": "rimraf ./es ./cjs ./dist ./types",
|
---|
30 | "test": "cross-env NODE_ENV=test BABEL_ENV=cjs mocha",
|
---|
31 | "test:update-snapshots": "cross-env UPDATE_SNAPSHOT=1 BABEL_ENV=cjs mocha",
|
---|
32 | "perf": "cross-env NODE_ENV=test BABEL_ENV=cjs node ./test/perf/index.cjs",
|
---|
33 | "perf:visitor-shortcut": "cross-env NODE_ENV=test BABEL_ENV=cjs node ./test/perf/visitor-shortcut.cjs",
|
---|
34 | "perf:refract": "cross-env NODE_ENV=test BABEL_ENV=cjs node ./test/perf/refract.cjs",
|
---|
35 | "typescript:check-types": "tsc --noEmit",
|
---|
36 | "typescript:declaration": "tsc -p declaration.tsconfig.json && rollup -c config/rollup/types.dist.js",
|
---|
37 | "prepack": "copyfiles -u 3 ../../LICENSES/* LICENSES && copyfiles -u 2 ../../NOTICE .",
|
---|
38 | "postpack": "rimraf NOTICE LICENSES"
|
---|
39 | },
|
---|
40 | "repository": {
|
---|
41 | "type": "git",
|
---|
42 | "url": "git+https://github.com/swagger-api/apidom.git"
|
---|
43 | },
|
---|
44 | "author": "Vladimir Gorej",
|
---|
45 | "license": "Apache-2.0",
|
---|
46 | "dependencies": {
|
---|
47 | "@babel/runtime-corejs3": "^7.20.7",
|
---|
48 | "@swagger-api/apidom-ast": "^0.95.0",
|
---|
49 | "@swagger-api/apidom-core": "^0.95.0",
|
---|
50 | "@swagger-api/apidom-ns-openapi-3-0": "^0.95.0",
|
---|
51 | "@types/ramda": "~0.29.6",
|
---|
52 | "ramda": "~0.29.1",
|
---|
53 | "ramda-adjunct": "^4.1.1",
|
---|
54 | "ts-mixer": "^6.0.3"
|
---|
55 | },
|
---|
56 | "files": [
|
---|
57 | "cjs/",
|
---|
58 | "dist/",
|
---|
59 | "es/",
|
---|
60 | "types/dist.d.ts",
|
---|
61 | "LICENSES",
|
---|
62 | "NOTICE",
|
---|
63 | "README.md",
|
---|
64 | "CHANGELOG.md"
|
---|
65 | ],
|
---|
66 | "gitHead": "c56f672154649ce4b6236e4f5e12e05e34867fd7"
|
---|
67 | }
|
---|