Comparing version 0.5.0 to 1.0.0
declare type JSValue = string | number | bigint | boolean | symbol | Function | Array<any> | undefined | object | null; | ||
declare type JSType = 'string' | 'number' | 'bigint' | 'boolean' | 'symbol' | 'function' | 'object' | 'any' | 'array'; | ||
declare type JSType = "string" | "number" | "bigint" | "boolean" | "symbol" | "function" | "object" | "any" | "array"; | ||
declare type ResolveFn = ((value: any, get: (key: string) => any) => JSValue | Promise<JSValue>); | ||
@@ -4,0 +4,0 @@ interface TypeDescriptor { |
{ | ||
"name": "untyped", | ||
"version": "0.5.0", | ||
"version": "1.0.0", | ||
"description": "", | ||
@@ -11,11 +11,14 @@ "repository": "unjs/untyped", | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.cjs" | ||
"require": "./dist/index.cjs", | ||
"types": "./dist/index.d.ts" | ||
}, | ||
"./babel-plugin": { | ||
"import": "./dist/babel.mjs", | ||
"require": "./dist/babel.cjs" | ||
"require": "./dist/babel.cjs", | ||
"types": "./dist/babel.d.ts" | ||
}, | ||
"./transform": { | ||
"import": "./dist/transform.mjs", | ||
"require": "./dist/transform.cjs" | ||
"require": "./dist/transform.cjs", | ||
"types": "./dist/transform.d.ts" | ||
} | ||
@@ -32,5 +35,5 @@ }, | ||
"lint": "eslint --ext .js,.ts .", | ||
"prepack": "yarn build", | ||
"release": "yarn test && standard-version && git push --follow-tags && npm publish", | ||
"test": "yarn lint && vitest run --coverage", | ||
"prepack": "pnpm build", | ||
"release": "pnpm test && standard-version && git push --follow-tags && npm publish", | ||
"test": "pnpm lint && vitest run --coverage", | ||
"web": "nuxi dev web", | ||
@@ -40,27 +43,28 @@ "web:build": "nuxi generate web" | ||
"dependencies": { | ||
"@babel/core": "^7.19.0", | ||
"@babel/standalone": "^7.19.0", | ||
"@babel/types": "^7.19.0", | ||
"scule": "^0.3.2" | ||
"@babel/core": "^7.20.2", | ||
"@babel/standalone": "^7.20.4", | ||
"@babel/types": "^7.20.2", | ||
"scule": "^1.0.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/template": "latest", | ||
"@nuxtjs/eslint-config-typescript": "latest", | ||
"@babel/template": "^7.18.10", | ||
"@types/babel__standalone": "latest", | ||
"@types/babel__traverse": "latest", | ||
"@types/node": "latest", | ||
"@vitest/coverage-c8": "^0.23.2", | ||
"@vue/compiler-sfc": "latest", | ||
"eslint": "latest", | ||
"hljs": "latest", | ||
"json-schema": "latest", | ||
"marked": "latest", | ||
"monaco-editor": "latest", | ||
"@types/node": "^18.11.9", | ||
"@vitest/coverage-c8": "^0.25.2", | ||
"@vue/compiler-sfc": "^3.2.45", | ||
"eslint": "^8.27.0", | ||
"eslint-config-unjs": "^0.0.2", | ||
"hljs": "^6.2.3", | ||
"json-schema": "^0.4.0", | ||
"marked": "^4.2.2", | ||
"monaco-editor": "^0.34.1", | ||
"nuxt": "npm:nuxt3@latest", | ||
"nuxt-windicss": "latest", | ||
"prismjs": "latest", | ||
"standard-version": "latest", | ||
"unbuild": "latest", | ||
"vitest": "^0.23.2" | ||
"nuxt-windicss": "^2.5.3", | ||
"prismjs": "^1.29.0", | ||
"standard-version": "^9.5.0", | ||
"typescript": "^4.8.4", | ||
"unbuild": "^0.9.4", | ||
"vitest": "^0.25.2" | ||
} | ||
} |
@@ -150,6 +150,6 @@ # untyped | ||
- Enable [Corepack](https://github.com/nodejs/corepack) using `corepack enable` (use `npm i -g corepack` for Node.js < 16.10) | ||
- Install dependencies using `yarn install` | ||
- Run interactive tests using `yarn dev` | ||
- Use `yarn web` to start playground website | ||
- Use `yarn test` before push to ensure all tests and lint checks passing | ||
- Install dependencies using `pnpm install` | ||
- Run interactive tests using `pnpm dev` | ||
- Use `pnpm web` to start playground website | ||
- Use `pnpm test` before push to ensure all tests and lint checks passing | ||
@@ -156,0 +156,0 @@ ## License |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
52756
1
19
1435
+ Addedscule@1.3.0(transitive)
- Removedscule@0.3.2(transitive)
Updated@babel/core@^7.20.2
Updated@babel/standalone@^7.20.4
Updated@babel/types@^7.20.2
Updatedscule@^1.0.0